/* ============================================================
   VELVET STREAM — Light Minimal Engineering OTT Platform
   Off-white base, ink-black type, hairline grid, cinematic video
   moments kept dark for contrast against the light chrome.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-1: #fafafa;
  --bg-2: #f2f2f2;
  --surface: #f7f7f7;
  --surface-2: #efefef;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --ink: #0a0a0a;
  --ink-soft: #2e2e2e;
  --muted: #6b6b6b;
  --muted-2: #a3a3a3;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.26);
  --shadow: rgba(0, 0, 0, 0.14);
  --radius: 0px;
  --radius-sm: 0px;
  --radius-lg: 0px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.015) 3px);
  z-index: 40;
  mix-blend-mode: multiply;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0 0 0.5em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; text-transform: none; letter-spacing: 0; }

p { color: var(--muted); line-height: 1.65; margin: 0 0 1em; }

.container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; position: relative; }
.section { padding: 110px 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}

.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--ink); display: inline-block; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; border: 1px solid var(--ink);
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
}

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }

.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--line-strong); color: var(--ink); padding: 12px 22px; }
.btn-outline:hover { border-color: var(--ink); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }

.brand { display: inline-flex; align-items: center; gap: 14px; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }

.brand-mark {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
}

.brand-mark svg {
  width: 100%; height: 100%; display: block;
}

.nav-links { display: flex; gap: 30px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.nav-links a { position: relative; color: var(--muted); padding: 6px 0; transition: color 0.25s ease; }

.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--ink); transition: width 0.3s var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links a.nav-admin {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--muted);
  opacity: 0.75;
}
.nav-links a.nav-admin::after { display: none; content: none; }
.nav-links a.nav-admin:hover { color: var(--ink); border-color: var(--ink); opacity: 1; }

/* ---------- Welcome screen ---------- */

.welcome-screen {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: #fff;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.welcome-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.welcome-glow {
  position: absolute; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  animation: ringPulse 2.6s ease-in-out infinite;
}

@keyframes ringPulse { 0%, 100% { transform: scale(0.85); opacity: 0.25; } 50% { transform: scale(1.05); opacity: 0.6; } }

.welcome-center { position: relative; text-align: center; }

.avatar-logo {
  width: 90px; height: 90px; margin: 0 auto 24px;
  display: grid; place-items: center;
  border: none;
  animation: fadeScale 1s var(--ease);
}
.avatar-logo svg {
  width: 100%; height: 100%; display: block;
}

@keyframes fadeScale { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.welcome-title { font-size: 2.4rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }
.welcome-copy { color: var(--muted); margin-top: 10px; font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }

.loading-bar { width: 240px; height: 1px; background: var(--line-strong); margin: 26px auto 0; overflow: hidden; }
.loading-bar span { display: block; height: 100%; width: 0%; background: var(--ink); animation: loadBar 2s var(--ease) forwards; }
@keyframes loadBar { to { width: 100%; } }

.ambient-orbit { display: none; }

/* ---------- Hero (dark video moment inside a light page) ---------- */

.cinematic-hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.55) contrast(1.05) brightness(0.95) saturate(1.05);
}

.hero-video-a { animation: heroCrossfadeA 18s ease-in-out infinite; z-index: 1; }
.hero-video-b { animation: heroCrossfadeB 18s ease-in-out infinite; z-index: 2; }

@keyframes heroCrossfadeA {
  0%, 42% { opacity: 1; }
  50%, 92% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes heroCrossfadeB {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

.hero-scrim {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 55%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.05) 55%);
}

.hero-grid {
  position: relative; z-index: 4; display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 40px; align-items: end; padding: 60px 0 70px;
  width: min(1240px, calc(100% - 32px)); margin: 0 auto;
}

.hero-copy .eyebrow { color: #fff; }
.hero-copy h1 { color: #fff; max-width: 760px; }
.hero-copy p { max-width: 540px; font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); }

.hero-actions { display: flex; gap: 16px; margin: 28px 0 34px; flex-wrap: wrap; }
.hero-actions .btn { border-color: #fff; color: #fff; }
.hero-actions .btn-primary { background: #fff; color: #000; }
.hero-actions .btn-primary:hover { background: transparent; color: #fff; }
.hero-actions .btn-secondary:hover { border-color: #fff; }

.trust-row { display: flex; gap: 34px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, 0.25); padding-top: 22px; }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: #fff; }
.trust-row span { font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.08em; }

.poster-stage { position: relative; height: 480px; }

.floating-poster {
  position: absolute; border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.3s ease;
  filter: grayscale(1) contrast(1.1);
}

.floating-poster:hover { filter: grayscale(0) contrast(1.05); border-color: #fff; }
.floating-poster img { width: 100%; height: 100%; object-fit: cover; }

.floating-poster span {
  position: absolute; left: 0; bottom: 0;
  font-size: 0.66rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 10px; background: #000; color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.3); border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.poster-main { width: 280px; height: 380px; top: 30px; left: 90px; z-index: 4; }
.poster-one { width: 180px; height: 240px; top: 0; left: -30px; z-index: 2; opacity: 0.85; }
.poster-two { width: 170px; height: 220px; bottom: 20px; right: -10px; z-index: 3; }
.poster-three { width: 150px; height: 200px; bottom: -20px; left: 60px; z-index: 1; opacity: 0.7; }

/* ---------- Marquee ---------- */

.marquee-band { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-1); padding: 18px 0; }

.marquee-track {
  display: flex; gap: 50px; width: max-content; animation: marquee 28s linear infinite;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--muted);
}

.marquee-track span::before { content: "// "; color: var(--ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Full-bleed video feature sections (kept dark for contrast) ---------- */

.video-feature {
  position: relative; min-height: 74vh; display: flex; align-items: center; overflow: hidden;
  background: #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.video-feature video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.2) brightness(0.5);
}

.video-feature::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.85) 100%);
}

.video-feature-body { position: relative; width: min(1240px, calc(100% - 32px)); margin: 0 auto; max-width: 620px; }

.video-feature-index { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.1em; margin-bottom: 18px; display: block; }
.video-feature h2 { color: #fff; }
.video-feature p { color: rgba(255, 255, 255, 0.72); }

.video-feature-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.video-feature-tags span {
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.3); padding: 6px 12px; color: rgba(255, 255, 255, 0.85);
}

/* ---------- Netflix-style rails ---------- */

.streaming-wall { padding-bottom: 40px; }
.wide-heading { max-width: 720px; margin-bottom: 40px; }
.rail-row { margin-bottom: 46px; }

.rail-row-head {
  display: flex; align-items: baseline; justify-content: space-between;
  width: min(1240px, calc(100% - 32px)); margin: 0 auto 14px;
  border-bottom: 1px solid var(--line); padding-bottom: 12px;
}

.rail-row-head h3 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.rail-nav { display: flex; gap: 8px; }

.rail-arrow {
  width: 38px; height: 38px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink);
  display: grid; place-items: center; cursor: pointer; transition: all 0.25s ease; font-size: 1.1rem;
}

.rail-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.rail, .rail-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x proximity;
  padding: 4px 0 26px; cursor: grab; -ms-overflow-style: none; scrollbar-width: none;
  width: min(1240px, calc(100% - 32px)); margin: 0 auto;
}

.rail::-webkit-scrollbar, .rail-track::-webkit-scrollbar { display: none; }
.rail:active, .rail-track:active { cursor: grabbing; }

.media-tile {
  position: relative; flex: 0 0 auto; width: 230px; height: 145px; overflow: hidden;
  scroll-snap-align: start; border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.4s var(--ease);
}

.media-tile.tall { width: 170px; height: 250px; }

.media-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.6s var(--ease), filter 0.5s ease;
}

.media-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0.75;
}

.media-tile span {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
}

.media-tile:hover { transform: translateY(-4px); border-color: var(--ink); z-index: 5; }
.media-tile:hover img { transform: scale(1.08); filter: grayscale(0) contrast(1); }

/* ---------- Glass / device holo section ---------- */

.glass-experience { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.immersive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.floating-chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

.floating-chip {
  padding: 10px 16px; background: #fff; border: 1px solid var(--line-strong);
  font-size: 0.78rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink-soft); transition: all 0.3s ease;
}

.floating-chip:hover { border-color: var(--ink); color: var(--ink); }

.device-holo { position: relative; padding: 16px; background: #fff; border: 1px solid var(--line-strong); }
.screen-topbar { display: flex; gap: 6px; padding: 4px 8px 12px; }
.screen-topbar i { width: 8px; height: 8px; border: 1px solid var(--line-strong); display: block; }
.screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 10px; }
.screen-grid span { height: 34px; background: var(--bg-1); border: 1px solid var(--line); }

.screen-player { overflow: hidden; aspect-ratio: 16/10; position: relative; background: #000; }
.screen-player video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15); }
.screen-player::after { content: "▶"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.8rem; color: rgba(255, 255, 255, 0.9); }

/* ---------- Feature / package / plan cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }

.feature-card, .package-card, .faq-card, .contact-card {
  background: #fff; border: none; padding: 30px 26px; position: relative; transition: background 0.3s ease;
}

.feature-card:hover, .package-card:hover, .contact-card:hover { background: var(--surface); }

.feature-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.8rem;
  border: 1px solid var(--ink); color: var(--ink); margin-bottom: 18px;
}

.package-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.package-card img { margin-bottom: 16px; aspect-ratio: 16/10; object-fit: cover; filter: grayscale(1); transition: filter 0.4s ease; }
.package-card:hover img { filter: grayscale(0); }

.package-card .tag, .plan-card .tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); border: 1px solid var(--line-strong); padding: 4px 12px; margin-bottom: 12px;
}

/* ---------- Pricing / plan cards ---------- */

.billing-toggle { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--line-strong); padding: 4px; margin: 8px 0 40px; }

.billing-toggle span {
  padding: 9px 20px; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; color: var(--muted); transition: all 0.3s ease;
}

.billing-toggle span.active { color: #fff; background: var(--ink); }
.billing-toggle .save-badge { background: none; color: var(--muted); font-family: var(--font-mono); font-size: 0.62rem; padding: 0; margin-left: -8px; cursor: default; text-transform: none; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }

.plan-card { position: relative; background: #fff; padding: 36px 28px; transition: background 0.4s ease; }
.plan-card:hover { background: var(--surface); }
.featured-plan { background: var(--surface); }

.featured-plan::after {
  content: "Most popular"; position: absolute; top: 0; right: 0;
  background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px;
}

.plan-price { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700; margin: 14px 0 20px; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.plan-price span { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.plan-price [data-amount] { font-family: var(--font-mono); font-size: inherit; font-weight: 700; color: var(--ink); }

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

.plan-list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; }
.plan-list li { color: var(--ink-soft); font-size: 0.88rem; padding-left: 22px; position: relative; }
.plan-list li::before { content: "—"; position: absolute; left: 0; color: var(--ink); font-weight: 700; }

/* ---------- Timeline / process ---------- */

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step-card { background: #fff; padding: 32px 26px; transition: background 0.3s ease; }
.step-card:hover { background: var(--surface); }

.step-card span {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px var(--ink); display: block; margin-bottom: 8px;
}

/* ---------- Testimonial ---------- */

.testimonial-band { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.quote-card { background: #fff; border: 1px solid var(--line-strong); padding: 36px; position: relative; }
.quote-card p { font-size: 1.1rem; color: var(--ink); font-style: italic; }
.quote-card strong { color: var(--muted); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Blog ---------- */

.blog-preview-grid, .about-layout, .contact-layout, .split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.preview-article { background: #fff; border: 1px solid var(--line-strong); padding: 28px; }
.text-link { color: var(--ink); font-weight: 700; border-bottom: 1px solid var(--ink); }
.text-link::after { content: " →"; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.blog-post { background: #fff; overflow: hidden; padding: 0 0 26px; transition: background 0.3s ease; }
.blog-post:hover { background: var(--surface); }
.blog-post img { aspect-ratio: 16/9; object-fit: cover; margin-bottom: 18px; filter: grayscale(1); transition: filter 0.4s ease; }
.blog-post:hover img { filter: grayscale(0); }
.blog-post h2, .blog-post p, .article-meta { padding: 0 24px; }
.blog-post h2 { font-size: 1.1rem; font-weight: 700; text-transform: none; }

.article-meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: block; }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--line); padding: 60px 0 40px; background: var(--bg-1); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Promo modal ---------- */

.wa-scanner-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.wa-scanner-modal.show {
  opacity: 1;
  visibility: visible;
}

.wa-scanner-card {
  width: min(420px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 24px 22px;
  position: relative;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.wa-scanner-card h3 {
  margin-top: 14px;
  font-size: 1.1rem;
}

.wa-scanner-card p {
  color: var(--muted);
  margin-top: 10px;
}

.wa-scanner-card img {
  width: 220px;
  height: 220px;
  margin: 18px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.wa-scanner-card .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.wa-scanner-card .modal-actions a,
.wa-scanner-card .modal-actions button {
  min-width: 132px;
}

.modal-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); cursor: pointer; }
.modal-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* ---------- Floating contact ---------- */

.floating-contact { position: fixed; bottom: 26px; left: 26px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }

.float-whatsapp, .float-telegram {
  width: 50px; height: 50px; border: 1px solid var(--ink); background: #fff;
  display: grid; place-items: center; font-family: var(--font-mono); font-weight: 700; font-size: 0.66rem; color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}

.float-whatsapp:hover, .float-telegram:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }

/* ---------- Inner pages ---------- */

.page-shell { padding-top: 10px; }
.page-banner { position: relative; padding: 110px 0 70px; border-bottom: 1px solid var(--line); background: #000; overflow: hidden; }
.page-banner .container { position: relative; z-index: 3; }
.page-banner h1 { max-width: 780px; color: #fff; }
.page-banner p { max-width: 640px; font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); }
.page-banner .eyebrow { color: #fff; }
.page-banner .eyebrow::before { background: #fff; }

.page-banner-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  filter: grayscale(0.55) contrast(1.05) brightness(0.9) saturate(1.05);
}

.page-banner-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.05) 55%);
}

/* Plain (video-less) page banners stay on the light surface */
.page-banner.no-video { background: var(--bg-1); }
.page-banner.no-video .eyebrow, .page-banner.no-video .eyebrow::before { color: var(--muted); }
.page-banner.no-video h1 { color: var(--ink); }
.page-banner.no-video p { color: var(--muted); }

.contact-layout, .contact-grid-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.contact-card ul { padding-left: 18px; color: var(--muted); }
.contact-card li { margin-bottom: 8px; }

.contact-action-list { display: flex; flex-direction: column; gap: 1px; margin-top: 18px; background: var(--line); border: 1px solid var(--line); }

.contact-action { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 16px 18px; transition: background 0.3s ease; }
.contact-action strong { color: var(--ink); font-family: var(--font-mono); font-size: 0.78rem; }
.contact-action:hover { background: var(--surface); }

.device-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.device-cloud span {
  padding: 10px 16px; border: 1px solid var(--line-strong); font-family: var(--font-mono); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.03em; transition: all 0.3s ease;
}

.device-cloud span:hover { border-color: var(--ink); color: var(--ink); }

/* Comparison table */

.comparison-wrapper { overflow-x: auto; border: 1px solid var(--line-strong); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.comparison-table th, .comparison-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.86rem; }

.comparison-table thead th {
  font-family: var(--font-mono); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--muted); background: var(--surface);
}

.comparison-table tbody tr:hover { background: var(--surface); }
.comparison-table tbody td:first-child { color: var(--ink); font-weight: 600; }

/* FAQ accordion */

.faq-card { cursor: pointer; }
.faq-card h3 { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-card h3::after { content: "+"; font-family: var(--font-mono); color: var(--muted); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-card.open h3::after { transform: rotate(45deg); color: var(--ink); }
.faq-card p { max-height: 0; overflow: hidden; opacity: 0; margin: 0; transition: max-height 0.4s var(--ease), opacity 0.3s ease, margin 0.3s ease; }
.faq-card.open p { max-height: 260px; opacity: 1; margin-top: 12px; }

/* ---------- Utility reveal ---------- */

[data-reveal] { opacity: 0; }
.lift-card { will-change: transform; }

/* ---------- Focus & motion ---------- */

a:focus-visible, button:focus-visible, input:focus-visible { outline: 1px solid var(--ink); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .poster-stage { height: 380px; margin-top: 20px; }
  .immersive-grid, .testimonial-grid, .blog-preview-grid, .about-layout, .contact-layout, .split-layout { grid-template-columns: 1fr; }
  .grid-3, .timeline, .package-layout, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .section { padding: 70px 0; }
  .video-feature { min-height: 60vh; }
  .grid-3, .timeline, .package-layout, .blog-grid, .plans-grid, .contact-grid-extra { grid-template-columns: 1fr; }
  .plans-grid.cols-4 { grid-template-columns: 1fr; }
  .poster-stage { height: 320px; }
  .poster-main { width: 210px; height: 280px; left: 40px; }
  .media-tile { width: 190px; height: 120px; }
  .media-tile.tall { width: 140px; height: 200px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .floating-contact { left: 14px; bottom: 14px; }
  .chatbot-widget { right: 14px; bottom: 14px; }
  .chatbot-panel { width: min(320px, 90vw); }
}
