/* =========================================================================
   LEMO TV — design system  (matches lemotvapp.com brand)
   Orange accent · dark petrol/teal · white sections
   ========================================================================= */

:root {
  /* brand */
  --orange:    #f6921e;
  --orange-2:  #f5811f;
  --orange-d:  #e07910;

  /* dark teal (petrol) surfaces */
  --teal:      #0e2e34;   /* main dark section bg */
  --teal-2:    #0a2329;   /* cards / darker */
  --teal-3:    #123b43;   /* elevated / hover */
  --ink:       #071b1f;   /* near-black teal (header/footer) */

  /* text on dark */
  --text:      #eaf3f2;
  --muted:     #a4bab8;
  --muted-2:   #7796949;

  /* light sections */
  --light:     #ffffff;
  --light-2:   #f4f8f8;
  --light-ink: #15302f;
  --light-mut: #4d6a68;

  --border:    rgba(255,255,255,.10);
  --border-o:  rgba(246,146,30,.35);

  --radius:    16px;
  --radius-sm: 11px;
  --radius-lg: 26px;
  --maxw:      1180px;

  --shadow:    0 24px 60px -24px rgba(0,0,0,.6);
  --glow:      0 12px 34px -10px rgba(246,146,30,.5);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Poppins", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--teal);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 3.9rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.accent { color: var(--orange); }
.muted  { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
  padding: 6px 14px; border: 1px solid var(--border-o); border-radius: 999px;
  background: rgba(246,146,30,.08);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .25s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--glow); }
.btn-primary:hover { background: var(--orange-d); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-wa { background: #25d366; color: #04220f; }
.btn-wa:hover { box-shadow: 0 0 40px -10px rgba(37,211,102,.6); }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- flash sale bar ---------- */
.flashbar {
  position: relative; z-index: 60;
  background: #d9342b; color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  text-align: center; padding: 10px 44px;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.flashbar .fb-btn {
  background: #fff; color: #d9342b; padding: 5px 16px; border-radius: 999px;
  font-size: .84rem; font-weight: 700;
}
.flashbar .close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: #fff; font-size: 1.3rem; cursor: pointer; opacity: .8;
}
.flashbar.hidden { display: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7,27,31,.82);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 26px; height: 72px; }
.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; font-size: .95rem; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; margin-left: auto; background: transparent; border: 1px solid var(--border); border-radius: 10px; width: 44px; height: 42px; color: #fff; cursor: pointer; font-size: 1.3rem; }

/* ---------- sections ---------- */
section { padding: 84px 0; }
.sec-light { background: var(--light); color: var(--light-ink); }
.sec-light .muted { color: var(--light-mut); }
.sec-light .section-head p { color: var(--light-mut); }
.sec-dark2 { background: var(--teal-2); }
.section-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { color: var(--orange); text-transform: uppercase; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; text-align: center; padding: 90px 0 84px;
  background:
    linear-gradient(180deg, rgba(9,26,30,.86), rgba(11,32,37,.9) 55%, var(--teal)),
    #0c272c;
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--border);
}
.hero.has-bg { background-blend-mode: normal; }
.hero .fake-warn { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-bottom: 22px; }
.hero .fake-warn b { color: var(--orange); }
.hero .wordmark-img { max-width: min(620px, 84%); height: auto; margin: 0 auto 4px; filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); }
.hero h1 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); letter-spacing: .04em; margin: 6px 0 26px; }
.hero .lead { max-width: 60ch; margin: 0 auto 30px; color: var(--muted); font-size: 1.15rem; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; color: var(--muted-2); font-size: .9rem; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; max-width: 820px; margin-left: auto; margin-right: auto; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: var(--orange); text-transform: uppercase; }
.stat .label { color: var(--text); font-size: 1rem; margin-top: 2px; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--teal-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-o); }
.sec-light .card { background: var(--light-2); border-color: rgba(0,0,0,.07); color: var(--light-ink); }
.sec-light .card p { color: var(--light-mut); }
.card .ico { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; font-size: 1.5rem; background: rgba(246,146,30,.14); color: var(--orange); margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; margin: 0; }

/* category cards (Sport / Movies / TV Shows) */
.cat-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 360px; display: flex; flex-direction: column; justify-content: flex-start;
  padding: 24px; color: #fff;
  background-color: var(--teal-2); background-size: cover; background-position: center;
  border: 1px solid var(--border);
}
.cat::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,20,23,.35) 0%, rgba(7,20,23,.15) 40%, rgba(7,20,23,.92) 100%); z-index: 0; }
.cat > * { position: relative; z-index: 1; }
.cat .k { font-size: .9rem; color: #e5eeed; }
.cat .v { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; margin-top: 2px; }
.cat .cat-btn { margin-top: auto; }

/* ---------- pricing ---------- */
.toggle-row { display: flex; justify-content: center; margin-bottom: 36px; }
.toggle { display: inline-flex; gap: 8px; }
.toggle button {
  border: 0; background: rgba(255,255,255,.06); color: var(--text);
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  padding: 11px 24px; border-radius: 999px; cursor: pointer; transition: all .18s;
}
.sec-light .toggle button { background: #eef3f3; color: var(--light-ink); }
.toggle button.active { background: var(--orange); color: #fff; }

.price-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card {
  position: relative; background: var(--teal-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; text-align: center;
}
.price-card.popular { border-color: var(--orange); box-shadow: var(--glow); }
.price-card .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.price-card .plan { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--orange); text-transform: uppercase; }
.price-card .amount { font-family: var(--font-head); font-weight: 800; font-size: 2.7rem; color: #fff; margin: 10px 0 4px; }
.price-card .per { color: var(--muted-2); font-size: .84rem; margin-bottom: 18px; }
.price-card .inc { font-family: var(--font-head); color: var(--muted); margin-bottom: 12px; font-size: .95rem; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; text-align: left; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: .93rem; color: var(--muted); }
.price-card li::before { content: "✓"; color: var(--orange); font-weight: 800; }

/* ---------- device / listing tiles ---------- */
.tile { display: flex; align-items: center; gap: 14px; background: var(--teal-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; transition: transform .18s, border-color .18s; }
.tile:hover { transform: translateY(-3px); border-color: var(--border-o); }
.sec-light .tile { background: var(--light-2); border-color: rgba(0,0,0,.07); color: var(--light-ink); }
.tile .ico { width: 44px; height: 44px; border-radius: 11px; flex: none; display: grid; place-items: center; font-size: 1.3rem; background: rgba(246,146,30,.14); color: var(--orange); }
.tile .t-body strong { display: block; font-family: var(--font-head); }
.tile .t-body span { color: var(--muted-2); font-size: .85rem; }
.sec-light .tile .t-body span { color: var(--light-mut); }
.tile .arrow { margin-left: auto; color: var(--orange); }

/* supported devices */
.devlogos { display: grid; grid-template-columns: repeat(7, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.devlogo { text-align: center; }
.devlogo .d-ico { font-size: 2rem; height: 46px; display: grid; place-items: center; color: #dfeae9; }
.devlogo .d-name { font-family: var(--font-head); font-weight: 600; font-size: .95rem; margin-top: 6px; }
.devlogo .d-sub { color: var(--muted-2); font-size: .78rem; }

/* channel chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--teal-2); font-size: .88rem; color: var(--muted); transition: all .15s; }
.chip:hover { border-color: var(--orange); color: #fff; }

/* ---------- article / prose ---------- */
.page-hero { padding: 66px 0 20px; text-align: center; background: linear-gradient(180deg, #0c272c, var(--teal)); border-bottom: 1px solid var(--border); }
.page-hero h1 { max-width: 22ch; margin-inline: auto; }
.page-hero .lead { color: var(--muted); max-width: 62ch; margin: 16px auto 0; text-transform: none; }
.crumbs { color: var(--muted-2); font-size: .85rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.crumbs a:hover { color: var(--orange); }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2em; font-size: 1.6rem; color: var(--orange); text-transform: none; }
.prose h3 { margin-top: 1.6em; color: #fff; }
.prose p, .prose li { color: #cdddda; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.prose code { background: var(--teal-2); padding: 2px 7px; border-radius: 6px; font-size: .9em; color: var(--orange); }
.prose strong { color: #fff; }

.callout { border: 1px solid var(--border-o); background: rgba(246,146,30,.07); border-radius: var(--radius-sm); padding: 18px 22px; margin: 26px 0; color: var(--muted); }
.callout strong { color: var(--orange); }

/* numbered steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 24px 0; }
.steps li { position: relative; padding: 4px 0 22px 56px; margin: 0 0 0 18px; border-left: 2px solid var(--border); }
.steps li:last-child { border-left-color: transparent; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: -19px; top: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; font-size: .95rem; }
.steps li strong { display: block; color: #fff; font-family: var(--font-head); margin-bottom: 3px; }

/* CTA band */
.cta-band { border: 1px solid var(--border-o); border-radius: var(--radius-lg); background: radial-gradient(80% 130% at 50% 0%, rgba(246,146,30,.18), transparent 70%), var(--teal-2); padding: 60px 40px; text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { max-width: 20ch; margin-inline: auto; color: #fff; }
.cta-band p { color: var(--muted); max-width: 54ch; margin: 14px auto 28px; }

/* offer band (split) */
.offer { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.offer .o-img { display: flex; align-items: center; justify-content: center; }
.offer .o-img img { width: 100%; height: auto; display: block; }
.offer .o-img.boxed { border-radius: var(--radius); overflow: hidden; }
.offer h2 { color: var(--orange); text-transform: none; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 22px; margin-bottom: 12px; background: var(--teal-2); }
.sec-light .faq details { background: var(--light-2); border-color: rgba(0,0,0,.08); }
.faq summary { cursor: pointer; padding: 16px 0; font-family: var(--font-head); font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }
.sec-light .faq details p { color: var(--light-mut); }

/* contact form */
.form { max-width: 560px; margin: 0 auto; display: grid; gap: 16px; }
.field label { display: block; font-size: .88rem; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.field input, .field textarea { width: 100%; padding: 14px 16px; font: inherit; font-size: .97rem; background: var(--teal); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color .15s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 130px; }

/* blog */
.post-card { display: flex; flex-direction: column; background: var(--teal-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, border-color .2s; }
.post-card:hover { transform: translateY(-4px); border-color: var(--border-o); }
.post-card .thumb { height: 150px; background: linear-gradient(135deg, rgba(246,146,30,.28), rgba(10,35,41,.7)); display: grid; place-items: center; font-size: 2.4rem; }
.post-card .p-body { padding: 22px; }
.post-card .meta { color: var(--muted-2); font-size: .8rem; margin-bottom: 8px; }
.post-card h3 { font-size: 1.12rem; margin: 0 0 10px; }
.post-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* footer */
.site-footer { background: var(--ink); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 44px; }
.foot-grid h4 { font-family: var(--font-head); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.foot-grid a { display: block; color: var(--muted); font-size: .93rem; padding: 5px 0; transition: color .15s; }
.foot-grid a:hover { color: var(--orange); }
.foot-about p { color: var(--muted); font-size: .92rem; max-width: 36ch; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted); }
.socials a:hover { border-color: var(--orange); color: var(--orange); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .85rem; }
.disclaimer { max-width: 780px; margin: 16px auto 0; color: var(--muted-2); font-size: .78rem; text-align: center; line-height: 1.6; }

/* floating whatsapp (RIGHT — Crisp sits on the LEFT) */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(37,211,102,.6); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- lead-capture popup ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(4,14,16,.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative; width: 100%; max-width: 440px;
  background: var(--teal); border: 1px solid var(--border-o);
  border-radius: var(--radius); padding: 34px 30px 26px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
  transform: translateY(14px) scale(.98); transition: transform .22s;
}
.modal-overlay.open .modal { transform: none; }
.modal h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.modal .modal-sub { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.modal .modal-context {
  display: none; font-family: var(--font-head); font-weight: 600; color: var(--orange);
  background: rgba(246,146,30,.1); border: 1px solid var(--border-o);
  border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 18px; font-size: .95rem;
}
.modal .modal-context.show { display: block; }
.modal .modal-note { color: var(--muted-2); font-size: .8rem; text-align: center; margin: 14px 0 0; }
.modal-close {
  position: absolute; top: 12px; right: 14px; background: transparent; border: 0;
  color: var(--muted); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: color .15s;
}
.modal-close:hover { color: #fff; }

/* utils */
.mt-0 { margin-top: 0; }

/* responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links.open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 72px; left: 0; right: 0; background: var(--ink); border-bottom: 1px solid var(--border); padding: 18px 22px; gap: 6px; }
  .nav-links.open a { padding: 10px 0; width: 100%; }
  .nav .nav-cta .btn-ghost { display: none; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .grid-3, .grid-4, .price-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .devlogos { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .offer { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  section { padding: 58px 0; }
  .grid-2, .grid-3, .grid-4, .price-grid, .cat-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .devlogos { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 22px; }
  .hero-cta .btn { width: 100%; }
}
