/* ==========================================================================
   LoungePlus.tv — Marketing Site
   Design system: dark broadcast/teletext palette pulled from the product
   itself (petrol blue #0d6e8a, cyan "+", amber alerts) — TV chrome, not a
   generic SaaS gradient page.
   ========================================================================== */

:root{
  /* ---- color ---- */
  --bg:        #080d14;
  --bg-soft:   #0a1119;
  --surface:   #101a28;
  --surface-2: #0c1520;
  --border:    rgba(255,255,255,.09);
  --border-2:  rgba(255,255,255,.15);
  --ink:       #f5f7fa;
  --ink-2:     #a6b3c4;
  --ink-3:     #64738a;
  --primary:   #0d6e8a;
  --primary-2: #0a566e;
  --cyan:      #4fc3e8;
  --amber:     #f59e0b;
  --amber-2:   #c97c07;
  --red:       #e35353;
  --green:     #22c07d;

  /* ---- type ---- */
  --f-display: 'Manrope', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'IBM Plex Mono', monospace;

  /* ---- layout ---- */
  --maxw: 1220px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px -20px rgba(0,0,0,.6);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.no-scroll{ overflow:hidden; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0; font-weight:800; letter-spacing:-.01em; }
p{ margin:0; }

:focus-visible{ outline:2px solid var(--cyan); outline-offset:3px; border-radius:4px; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }

/* background texture: faint scanlines + radial glow, evokes a screen */
body{
  background-image:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(13,110,138,.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 15%, rgba(245,158,11,.10), transparent 55%);
  background-repeat:no-repeat;
}

/* ---- eyebrow / channel-number motif ----
   The product itself prints "11/50" style page counters on every slide.
   We reuse that broadcast vocabulary as the site's section labels. */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-mono); font-size:12.5px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--cyan); font-weight:600;
  margin-bottom:14px;
}
.eyebrow::before{
  content:''; width:22px; height:1px; background:var(--cyan); opacity:.7;
}
.eyebrow .chn{
  font-family:var(--f-mono); background:rgba(79,195,232,.12);
  border:1px solid rgba(79,195,232,.35); color:var(--cyan);
  padding:2px 7px; border-radius:5px; font-size:11.5px;
}

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:100px; font-weight:700; font-size:15px;
  border:1px solid transparent; transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-amber{
  background:linear-gradient(180deg, #ffb02e, var(--amber));
  color:#1a1200; box-shadow:0 10px 30px -8px rgba(245,158,11,.55);
}
.btn-amber:hover{ box-shadow:0 14px 34px -6px rgba(245,158,11,.7); transform:translateY(-1px); }
.btn-ghost{
  background:rgba(255,255,255,.04); border-color:var(--border-2); color:var(--ink);
}
.btn-ghost:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.3); }
.btn-cyan{
  background:rgba(79,195,232,.12); border-color:rgba(79,195,232,.4); color:var(--cyan);
}
.btn-cyan:hover{ background:rgba(79,195,232,.2); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:13.5px; }

/* ==========================================================================
   NAV
   ========================================================================== */
#nav{
  position:fixed; top:0; left:0; right:0; z-index:200;
  backdrop-filter:blur(14px);
  background:rgba(8,13,20,.72);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, background .25s ease;
}
#nav.scrolled{ border-color:var(--border); background:rgba(8,13,20,.92); }
#nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:74px; gap:20px; }
.nav-logo{ display:flex; align-items:center; gap:8px; }
.nav-logo img{ height:22px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:30px; font-size:14.5px; font-weight:600; color:var(--ink-2); }
.nav-links a{ transition:color .15s ease; position:relative; }
.nav-links a:hover{ color:var(--ink); }
.nav-actions{ display:flex; align-items:center; gap:12px; }

.lang-switch{ position:relative; }
.lang-btn{
  display:flex; align-items:center; gap:6px; background:rgba(255,255,255,.05);
  border:1px solid var(--border-2); color:var(--ink-2); padding:9px 12px; border-radius:100px;
  font-size:13px; font-weight:700; font-family:var(--f-mono);
}
.lang-btn:hover{ color:var(--ink); }
.lang-menu{
  position:absolute; top:calc(100% + 8px); right:0; background:var(--surface);
  border:1px solid var(--border-2); border-radius:12px; padding:6px; min-width:150px;
  box-shadow:var(--shadow); display:none; flex-direction:column; gap:2px;
}
.lang-menu.open{ display:flex; }
.lang-menu button{
  display:flex; align-items:center; gap:10px; background:none; border:none; color:var(--ink-2);
  padding:9px 10px; border-radius:8px; font-size:13.5px; text-align:left; width:100%;
}
.lang-menu button:hover{ background:rgba(255,255,255,.06); color:var(--ink); }
.lang-menu button.active{ color:var(--cyan); }

.nav-burger{ display:none; width:40px; height:40px; align-items:center; justify-content:center; background:rgba(255,255,255,.05); border:1px solid var(--border-2); border-radius:10px; }
.nav-burger span, .nav-burger span::before, .nav-burger span::after{
  content:''; display:block; width:16px; height:2px; background:var(--ink); position:relative; transition:.2s;
}
.nav-burger span::before{ position:absolute; top:-5px; }
.nav-burger span::after{ position:absolute; top:5px; }

/* ==========================================================================
   HERO — signature element: a live "TV bezel" cycling real product channels
   ========================================================================== */
#hero{ padding:168px 0 100px; position:relative; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero-copy h1{
  font-size:clamp(34px, 4.4vw, 58px); line-height:1.05; margin-bottom:22px;
}
.hero-copy h1 em{ font-style:normal; color:var(--cyan); }
.hero-copy .lead{ font-size:18px; color:var(--ink-2); max-width:520px; margin-bottom:32px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }
.hero-trust{ display:flex; gap:18px; flex-wrap:wrap; font-size:13px; color:var(--ink-3); }
.hero-trust span{ display:flex; align-items:center; gap:7px; }
.hero-trust svg{ flex:none; color:var(--green); }

/* TV bezel */
.tv-mock{ position:relative; }
.tv-frame{
  position:relative; background:linear-gradient(165deg,#1b2632,#0a1119 55%,#060a0f);
  border-radius:15px; padding:9px 9px 13px; box-shadow:var(--shadow), inset 0 0 0 1px rgba(255,255,255,.07), inset 0 1px 0 rgba(255,255,255,.12);
}
.tv-frame::after{ /* power LED */
  content:''; position:absolute; left:50%; bottom:5px; transform:translateX(-50%);
  width:4px; height:4px; border-radius:50%; background:var(--cyan);
  box-shadow:0 0 5px 1.5px rgba(79,195,232,.75);
}
.tv-screen{
  position:relative; border-radius:6px; overflow:hidden; aspect-ratio:16/9; background:#000;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.5);
}
.tv-screen img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .7s ease;
}
.tv-screen img.on{ opacity:1; }
.tv-screen::after{ /* scanline + glass sheen */
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.05), transparent 20%, transparent 80%, rgba(0,0,0,.25)),
             linear-gradient(115deg, rgba(255,255,255,.06) 0%, transparent 16%);
}
.tv-chan{
  position:absolute; top:12px; right:14px; z-index:3; font-family:var(--f-mono); font-size:11px;
  color:#fff; background:rgba(0,0,0,.5); border:1px solid rgba(255,255,255,.25);
  padding:3px 8px; border-radius:6px; letter-spacing:.06em; backdrop-filter:blur(4px);
}
.tv-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; padding:0 5px; }
.tv-dots{ display:flex; gap:6px; }
.tv-dots i{ width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.18); transition:.25s; }
.tv-dots i.on{ background:var(--cyan); width:16px; border-radius:4px; }
.tv-leg{
  position:absolute; left:50%; bottom:-30px; transform:translateX(-50%);
  width:12px; height:22px; background:linear-gradient(180deg,#212e3b,#0a1119);
}
.tv-leg::after{ /* pedestal foot */
  content:''; position:absolute; left:50%; bottom:-8px; transform:translateX(-50%);
  width:132px; height:9px; border-radius:6px;
  background:linear-gradient(180deg,#232f3c,#080c11);
  box-shadow:0 10px 22px -4px rgba(0,0,0,.55);
}
.tv-badge{
  position:absolute; left:-16px; bottom:22px; background:var(--surface); border:1px solid var(--border-2);
  border-radius:14px; padding:12px 16px; box-shadow:var(--shadow); display:flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:700; color:var(--ink-2); animation:floaty 5s ease-in-out infinite;
}
.tv-badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(34,192,125,.18); }
.tv-badge2{
  position:absolute; right:-14px; top:36px; background:var(--surface); border:1px solid var(--border-2);
  border-radius:14px; padding:10px 14px; box-shadow:var(--shadow); font-size:12px; color:var(--ink-2);
  animation:floaty 5.6s .4s ease-in-out infinite; max-width:170px;
}
@keyframes floaty{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-8px);} }
@media (prefers-reduced-motion:reduce){ .tv-badge,.tv-badge2{ animation:none; } }

/* logo strip */
#logostrip{ padding:34px 0 10px; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
#logostrip .wrap{ display:flex; align-items:center; gap:40px; flex-wrap:wrap; justify-content:space-between; }
#logostrip .ls-label{ font-family:var(--f-mono); font-size:11.5px; color:var(--ink-3); text-transform:uppercase; letter-spacing:.1em; white-space:normal; max-width:100%; }
#logostrip .ls-items{ display:flex; gap:34px; flex-wrap:wrap; color:var(--ink-3); font-weight:700; font-family:var(--f-display); font-size:14px; opacity:.8; }
#logostrip .ls-items .ls-more{ color:var(--amber); opacity:1; font-style:italic; }

/* ==========================================================================
   SECTION shell
   ========================================================================== */
section{ padding:104px 0; position:relative; }
.sec-head{ max-width:640px; margin-bottom:56px; }
.sec-head h2{ font-size:clamp(26px,3vw,38px); margin-bottom:14px; }
.sec-head p{ color:var(--ink-2); font-size:16.5px; }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feat-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px; transition:border-color .2s ease, transform .2s ease;
}
.feat-card:hover{ border-color:rgba(79,195,232,.35); transform:translateY(-3px); }
.feat-ico{
  width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:rgba(13,110,138,.18); color:var(--cyan); margin-bottom:18px;
}
.feat-card h3{ font-size:17px; margin-bottom:8px; }
.feat-card p{ color:var(--ink-2); font-size:14.5px; }
.feat-card.wide{ grid-column:span 2; }

/* feature showcase w/ screenshot */
.feat-show{
  display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; margin-top:88px;
}
.feat-show:nth-child(odd) .feat-show-img{ order:2; }
.feat-show-badge{
  display:inline-flex; align-items:center; gap:8px; background:rgba(245,158,11,.12); border:1px solid rgba(245,158,11,.35);
  color:var(--amber); font-family:var(--f-mono); font-size:11.5px; padding:4px 10px; border-radius:100px; margin-bottom:16px;
}
.feat-show h3{ font-size:clamp(22px,2.4vw,30px); margin-bottom:14px; }
.feat-show p{ color:var(--ink-2); font-size:15.5px; margin-bottom:18px; }
.feat-show ul{ display:flex; flex-direction:column; gap:10px; }
.feat-show ul li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:var(--ink-2); }
.feat-show ul li svg{ flex:none; color:var(--cyan); margin-top:3px; }
.feat-show-img{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border-2); box-shadow:var(--shadow);
  background:#000;
}
.feat-show-img img{ width:100%; display:block; }

/* ==========================================================================
   SPECIALTY CHANNEL STRIP (horizontal, TV-guide style)
   ========================================================================== */
.chan-strip-wrap{ position:relative; }
.chan-strip{
  display:flex; gap:16px; overflow-x:auto; padding:6px 24px 20px; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.chan-strip::-webkit-scrollbar{ height:6px; }
.chan-strip::-webkit-scrollbar-thumb{ background:var(--border-2); border-radius:10px; }
.chan-card{
  flex:0 0 260px; scroll-snap-align:start; background:var(--surface); border:1px solid var(--border);
  border-radius:16px; overflow:hidden;
}
.chan-card .ci{ aspect-ratio:16/9; overflow:hidden; background:#000; }
.chan-card .ci img{ width:100%; height:100%; object-fit:cover; }
.chan-card .cc-body{ padding:14px 16px; }
.chan-card .cc-num{ font-family:var(--f-mono); font-size:10.5px; color:var(--cyan); margin-bottom:4px; letter-spacing:.08em; }
.chan-card h4{ font-family:var(--f-display); font-size:14.5px; font-weight:700; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; counter-reset:step; }
.step{ position:relative; padding-top:8px; }
.step .stepnum{
  font-family:var(--f-mono); font-size:34px; font-weight:700; color:transparent;
  -webkit-text-stroke:1.4px rgba(79,195,232,.5); margin-bottom:14px; display:block;
}
.step h4{ font-size:16px; margin-bottom:8px; }
.step p{ color:var(--ink-2); font-size:14px; }
.step:not(:last-child)::after{
  content:''; position:absolute; top:22px; left:calc(100% - 4px); width:calc(100% - 30px); height:1px;
  background:linear-gradient(90deg, var(--border-2), transparent); display:none;
}
@media (min-width:900px){ .step:not(:last-child)::after{ display:block; } }

/* ==========================================================================
   COMPATIBILITY / INSTALL
   ========================================================================== */
.plat-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.plat-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:22px 18px;
  text-align:center; transition:border-color .2s, transform .2s;
}
.plat-card:hover{ border-color:rgba(79,195,232,.35); transform:translateY(-3px); }
.plat-card .pico{ width:46px; height:46px; margin:0 auto 14px; display:flex; align-items:center; justify-content:center; color:var(--ink); }
.plat-card h4{ font-size:14.5px; margin-bottom:6px; }
.plat-card p{ font-size:12px; color:var(--ink-3); margin-bottom:14px; min-height:32px; }

.install-panel{
  margin-top:40px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:34px; display:grid; grid-template-columns:1fr 1fr; gap:36px;
}
.install-col h4{ display:flex; align-items:center; gap:10px; font-size:15.5px; margin-bottom:16px; }
.install-col ol{ display:flex; flex-direction:column; gap:12px; counter-reset:ins; }
.install-col ol li{
  counter-increment:ins; display:flex; gap:12px; font-size:14px; color:var(--ink-2); align-items:flex-start;
}
.install-col ol li::before{
  content:counter(ins); flex:none; width:22px; height:22px; border-radius:50%; background:rgba(79,195,232,.15);
  color:var(--cyan); font-family:var(--f-mono); font-size:11.5px; font-weight:700; display:flex; align-items:center; justify-content:center;
}
.install-panel .panel-cta{ grid-column:1 / -1; border-top:1px solid var(--border); padding-top:22px; display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:space-between; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-toggle{ display:flex; align-items:center; justify-content:center; gap:14px; margin:0 0 46px; }
.price-toggle span{ font-size:14px; color:var(--ink-3); font-weight:600; }
.price-toggle span.on{ color:var(--ink); }
.tg{ position:relative; width:50px; height:28px; border-radius:100px; background:var(--surface); border:1px solid var(--border-2); }
.tg-knob{ position:absolute; top:2px; left:3px; width:22px; height:22px; border-radius:50%; background:var(--cyan); transition:left .2s ease; }
.save-chip{ background:rgba(34,192,125,.15); color:var(--green); border:1px solid rgba(34,192,125,.3); font-size:11.5px; font-weight:700; padding:3px 9px; border-radius:100px; }

.price-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.price-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:30px;
  display:flex; flex-direction:column;
}
.price-card.feat{ border-color:var(--amber); background:linear-gradient(180deg, rgba(245,158,11,.08), var(--surface) 40%); position:relative; }
.price-card.feat::before{
  content:attr(data-badge); position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--amber); color:#1a1200; font-size:11px; font-weight:800; padding:5px 14px; border-radius:100px;
  font-family:var(--f-mono); letter-spacing:.04em;
}
.price-card h3{ font-size:19px; margin-bottom:6px; }
.price-card .p-desc{ color:var(--ink-3); font-size:13.5px; margin-bottom:20px; }
.price-card .p-price{ font-family:var(--f-display); font-size:38px; font-weight:800; margin-bottom:2px; }
.price-card .p-price small{ font-size:14px; font-weight:600; color:var(--ink-3); }
.price-card .p-sub{ font-size:12px; color:var(--ink-3); margin-bottom:22px; min-height:16px; }
.price-card ul{ display:flex; flex-direction:column; gap:11px; margin-bottom:24px; flex:1; }
.price-card ul li{ display:flex; gap:9px; align-items:flex-start; font-size:13.5px; color:var(--ink-2); }
.price-card ul li svg{ flex:none; color:var(--cyan); margin-top:2px; }
.price-card ul li.off{ color:var(--ink-3); }
.price-card ul li.off svg{ color:var(--ink-3); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.tmn-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.tmn-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:26px; }
.tmn-stars{ color:var(--amber); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.tmn-card p{ color:var(--ink-2); font-size:14.5px; margin-bottom:20px; }
.tmn-who{ display:flex; align-items:center; gap:12px; }
.tmn-avatar{
  width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--f-display); font-weight:800; font-size:14px; color:#fff; flex:none;
}
.tmn-name{ font-size:13.5px; font-weight:700; }
.tmn-role{ font-size:12px; color:var(--ink-3); }
.tmn-note{ margin-top:26px; font-size:12px; color:var(--ink-3); text-align:center; }

/* ==========================================================================
   LANGUAGES AVAILABLE
   ========================================================================== */
.lang-grid{ display:flex; flex-wrap:wrap; gap:12px; }
.lang-chip{
  display:flex; align-items:center; gap:10px; background:var(--surface); border:1px solid var(--border);
  border-radius:100px; padding:10px 18px 10px 12px; font-size:14px; font-weight:600;
}
.lang-chip .flag{ width:24px; height:24px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; background:rgba(79,195,232,.15); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; }
.faq-q{
  width:100%; background:none; border:none; color:var(--ink); text-align:left; padding:20px 22px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; font-size:15.5px; font-weight:700; font-family:var(--f-display);
}
.faq-q .plus{ flex:none; width:22px; height:22px; display:flex; align-items:center; justify-content:center; color:var(--cyan); transition:transform .2s ease; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-a div{ padding:0 22px 20px; color:var(--ink-2); font-size:14.5px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
#final-cta{
  border-radius:28px; margin:0 24px; padding:70px 40px; text-align:center;
  background:radial-gradient(ellipse at 50% -20%, rgba(13,110,138,.5), var(--bg-soft) 65%);
  border:1px solid var(--border); position:relative; overflow:hidden;
}
#final-cta h2{ font-size:clamp(26px,3.4vw,40px); margin-bottom:16px; }
#final-cta p{ color:var(--ink-2); max-width:520px; margin:0 auto 30px; }
#final-cta .fc-ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer{ padding:70px 0 30px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:50px; }
.foot-logo{ display:flex; align-items:center; gap:8px; margin-bottom:14px; }
.foot-logo img{ height:20px; }
.foot-desc{ color:var(--ink-3); font-size:13.5px; max-width:280px; margin-bottom:18px; }
.foot-col h5{ font-family:var(--f-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.1em; color:var(--ink-3); margin-bottom:16px; }
.foot-col ul{ display:flex; flex-direction:column; gap:11px; }
.foot-col a{ color:var(--ink-2); font-size:14px; }
.foot-col a:hover{ color:var(--cyan); }
.foot-bottom{ border-top:1px solid var(--border); padding-top:26px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.foot-bottom p{ font-size:12.5px; color:var(--ink-3); }
.foot-social{ display:flex; gap:10px; }
.foot-social a{ width:34px; height:34px; border-radius:50%; background:var(--surface); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--ink-2); }
.foot-social a:hover{ color:var(--cyan); border-color:rgba(79,195,232,.4); }

/* ==========================================================================
   CHATBOT WIDGET
   ========================================================================== */
#lp-chat-launcher{
  position:fixed; right:22px; bottom:22px; z-index:500; width:60px; height:60px; border-radius:50%;
  background:linear-gradient(160deg, var(--primary), var(--primary-2)); border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center; box-shadow:0 14px 34px -8px rgba(13,110,138,.7);
  color:#fff; transition:transform .2s ease;
}
#lp-chat-launcher:hover{ transform:scale(1.06); }
#lp-chat-launcher .badge{
  position:absolute; top:-4px; right:-4px; background:var(--amber); color:#1a1200; width:20px; height:20px;
  border-radius:50%; font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center;
  font-family:var(--f-mono); border:2px solid var(--bg);
}
#lp-chat-panel{
  position:fixed; right:22px; bottom:96px; z-index:500; width:370px; max-width:calc(100vw - 32px);
  height:min(560px, calc(100vh - 140px)); background:var(--surface); border:1px solid var(--border-2);
  border-radius:18px; box-shadow:var(--shadow); display:none; flex-direction:column; overflow:hidden;
}
#lp-chat-panel.open{ display:flex; }
.lp-chat-head{ background:linear-gradient(160deg,var(--primary),var(--primary-2)); padding:16px 18px; display:flex; align-items:center; gap:12px; }
.lp-chat-head .lci{ width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; color:#fff; }
.lp-chat-head .lct{ flex:1; }
.lp-chat-head .lct b{ display:block; font-size:14px; color:#fff; }
.lp-chat-head .lct span{ font-size:11.5px; color:rgba(255,255,255,.75); display:flex; align-items:center; gap:5px; }
.lp-chat-head .lct span::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--green); }
.lp-chat-close{ background:rgba(255,255,255,.15); border:none; color:#fff; width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; }

.lp-chat-body{ flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:12px; background:var(--bg-soft); }
.lp-msg{ max-width:84%; font-size:13.5px; line-height:1.5; padding:10px 13px; border-radius:14px; }
.lp-msg.bot{ background:var(--surface); border:1px solid var(--border); align-self:flex-start; border-bottom-left-radius:4px; }
.lp-msg.user{ background:var(--primary); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.lp-msg.system{ align-self:center; font-size:11.5px; color:var(--ink-3); background:none; padding:2px; }
.lp-typing{ display:flex; gap:4px; padding:12px 14px; align-self:flex-start; background:var(--surface); border:1px solid var(--border); border-radius:14px; border-bottom-left-radius:4px; }
.lp-typing i{ width:6px; height:6px; border-radius:50%; background:var(--ink-3); animation:lptyping 1s infinite ease-in-out; }
.lp-typing i:nth-child(2){ animation-delay:.15s; } .lp-typing i:nth-child(3){ animation-delay:.3s; }
@keyframes lptyping{ 0%,60%,100%{ transform:translateY(0); opacity:.5; } 30%{ transform:translateY(-4px); opacity:1; } }

.lp-chat-gate{ padding:20px 18px; display:flex; flex-direction:column; gap:12px; background:var(--bg-soft); flex:1; justify-content:center; }
.lp-chat-gate p{ font-size:13.5px; color:var(--ink-2); }
.lp-chat-gate input{
  width:100%; background:var(--surface); border:1px solid var(--border-2); color:var(--ink);
  padding:12px 14px; border-radius:10px; font-size:14px;
}
.lp-chat-gate input:focus{ border-color:var(--cyan); }
.lp-chat-gate .err{ color:var(--red); font-size:12px; display:none; }

.lp-chat-foot{ padding:12px; border-top:1px solid var(--border); display:flex; gap:8px; background:var(--surface); }
.lp-chat-foot input{
  flex:1; background:var(--bg-soft); border:1px solid var(--border-2); color:var(--ink);
  padding:11px 14px; border-radius:100px; font-size:13.5px;
}
.lp-chat-foot input:focus{ border-color:var(--cyan); }
.lp-chat-foot button{
  width:40px; height:40px; border-radius:50%; background:var(--cyan); border:none; color:#04202b;
  display:flex; align-items:center; justify-content:center; flex:none;
}
.lp-chat-foot button:disabled{ opacity:.5; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* legal pages */
.legal-page{ padding:150px 0 100px; }
.legal-page .wrap{ max-width:820px; }
.legal-page h1{ font-size:clamp(28px,4vw,42px); margin-bottom:10px; }
.legal-page .updated{ font-family:var(--f-mono); font-size:12.5px; color:var(--ink-3); margin-bottom:44px; }
.legal-page h2{ font-size:20px; margin:40px 0 14px; }
.legal-page h3{ font-size:16px; margin:24px 0 10px; color:var(--ink); }
.legal-page p, .legal-page li{ color:var(--ink-2); font-size:15px; line-height:1.75; margin-bottom:12px; }
.legal-page ul{ list-style:disc; padding-left:22px; margin-bottom:16px; }
.legal-page ul li{ margin-bottom:8px; }
.legal-page a{ color:var(--cyan); text-decoration:underline; }
.legal-toc{ background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:20px 24px; margin-bottom:40px; }
.legal-toc b{ display:block; margin-bottom:10px; font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-3); font-family:var(--f-mono); }
.legal-toc a{ color:var(--ink-2); font-size:14px; display:block; padding:4px 0; text-decoration:none; }
.legal-toc a:hover{ color:var(--cyan); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px){
  .feat-grid{ grid-template-columns:repeat(2,1fr); }
  .plat-grid{ grid-template-columns:repeat(3,1fr); }
  .price-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .tmn-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .steps{ grid-template-columns:1fr 1fr; }
}
@media (max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .tv-mock{ max-width:460px; margin:0 auto 34px; }
  .feat-show{ grid-template-columns:1fr; gap:30px; }
  .feat-show .feat-show-img{ order:-1 !important; }
  .install-panel{ grid-template-columns:1fr; }
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  /* Entrar / Testar grátis já existem no menu mobile — some da barra fixa pra não estourar a largura */
  .nav-actions > a.btn-sm{ display:none; }
}
@media (max-width:400px){
  /* telas muito estreitas: mantém só idioma + menu na barra fixa */
  .lang-btn span:first-child{ display:inline; }
  .nav-actions{ gap:8px; }
}
@media (max-width:640px){
  .feat-grid{ grid-template-columns:1fr; }
  .feat-card.wide{ grid-column:span 1; }
  .plat-grid{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr; gap:30px; }
  .steps{ grid-template-columns:1fr; }
  section{ padding:70px 0; }
  #hero{ padding:130px 0 60px; }
  #final-cta{ margin:0 16px; padding:50px 24px; }
  #lp-chat-panel{ right:16px; left:16px; width:auto; bottom:88px; }
  #lp-chat-launcher{ right:16px; bottom:16px; }
  /* em telas estreitas a TV mockup fica pequena e os cards flutuantes (offsets fixos em px)
     passam a cair DENTRO da tela em vez de flutuar do lado de fora — some com eles aqui,
     a info já aparece nos badges de confiança logo acima (.hero-trust) */
  .tv-badge, .tv-badge2{ display:none; }
  /* TV mockup sangra até a borda da tela (o wrap ao redor tem 24px de padding — cancelamos
     aqui) pra ganhar bastante tamanho, já que é o elemento visual principal do hero.
     Margem embaixo reservada pro pé/pedestal. */
  .tv-mock{ margin:0 -24px 40px; max-width:none; }
}
