/* ============================================================
   Reseller Panel IPTV — Design System
   Premium dark interface · blue/orange accents · glass effects
   ============================================================ */

:root {
  --bg-0: #050a18;
  --bg-1: #070d1f;
  --bg-2: #0a1228;
  --bg-3: #0e1732;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke-soft: rgba(255, 255, 255, 0.06);
  --text: #eef2fb;
  --text-2: #b8c2d9;
  --text-3: #8b96b3;
  --blue: #3b82f6;
  --blue-2: #2563eb;
  --blue-soft: rgba(59, 130, 246, 0.16);
  --orange: #f97316;
  --orange-2: #fb923c;
  --orange-soft: rgba(249, 115, 22, 0.14);
  --green: #25d366;
  --grad-brand: linear-gradient(120deg, #3b82f6 0%, #60a5fa 45%, #f97316 100%);
  --grad-cta: linear-gradient(120deg, #f97316, #fb923c);
  --grad-blue: linear-gradient(120deg, #2563eb, #3b82f6);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 20px 50px -18px rgba(2, 6, 18, 0.8);
  --glow-blue: 0 0 60px -12px rgba(59, 130, 246, 0.55);
  --glow-orange: 0 0 60px -12px rgba(249, 115, 22, 0.5);
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); overflow-x: hidden; overflow-x: clip; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--orange-2); outline-offset: 3px; border-radius: 6px; }

::selection { background: rgba(249, 115, 22, 0.35); }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Ambient background ---------- */
.bg-ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(37, 99, 235, 0.16), transparent 60%),
    radial-gradient(800px 500px at 8% 12%, rgba(249, 115, 22, 0.07), transparent 55%),
    var(--bg-0);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--orange); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 11, 26, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--stroke-soft);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.7);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.01em; white-space: nowrap; flex: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 4px 14px rgba(59,130,246,0.35)); }
.brand span em { font-style: normal; color: var(--orange-2); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px; border-radius: 10px; color: var(--text-2); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--text); background: var(--blue-soft); }
.nav-cta { margin-left: 8px; }
.menu-toggle {
  display: none; background: var(--surface-2); border: 1px solid var(--stroke); border-radius: 12px;
  width: 46px; height: 46px; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; stroke: var(--text); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(5, 9, 20, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: calc(var(--nav-h) + 24px) 8% 40px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a.mm-link {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; padding: 14px 6px;
  border-bottom: 1px solid var(--stroke-soft); color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(10px);
}
.mobile-menu.open a.mm-link { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.mobile-menu.open a.mm-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a.mm-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a.mm-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a.mm-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a.mm-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a.mm-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a.mm-link svg { width: 18px; height: 18px; stroke: var(--text-3); }
.mobile-menu .btn { margin-top: 26px; justify-content: center; }
.mm-contacts { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; color: var(--text-3); font-size: 0.95rem; }
.mm-contacts a { color: var(--text-2); display: inline-flex; gap: 8px; align-items: center; }
.mm-contacts svg { width: 16px; height: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 14px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.22s ease, box-shadow 0.3s ease, background 0.25s, border-color 0.25s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 12px 32px -12px rgba(249, 115, 22, 0.65); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(249, 115, 22, 0.8); }
/* WhatsApp — refined: quiet glass at rest, fills green on hover */
.btn-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.38);
  color: #5eead4;
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn-whatsapp svg { color: #25d366; transition: color 0.25s; }
.btn-whatsapp:hover {
  background: #1fbd5c;
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -14px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover svg { color: #fff; }
/* Solid variant where prominence is needed (sticky bar, hero) */
.btn-whatsapp-solid { background: #1fbd5c; border-color: transparent; color: #fff; box-shadow: 0 12px 30px -12px rgba(37, 211, 102, 0.5); }
.btn-whatsapp-solid svg { color: #fff; }
.btn-whatsapp-solid:hover { background: #22cc66; transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(37, 211, 102, 0.65); }
.btn-ghost { background: var(--surface); border-color: var(--stroke); color: var(--text); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-blue { background: var(--grad-blue); color: #fff; box-shadow: 0 12px 32px -12px rgba(37, 99, 235, 0.6); }
.btn-blue:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; border-radius: 11px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Sections & transitions ---------- */
.section { position: relative; padding: 110px 0; overflow: hidden; overflow: clip; }
.section-tight { padding: 80px 0; }
.sec-head { max-width: 720px; margin: 0 auto 58px; text-align: center; position: relative; z-index: 2; }
.sec-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-2); background: var(--orange-soft); border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}
.eyebrow.blue { color: #93c5fd; background: var(--blue-soft); border-color: rgba(59, 130, 246, 0.3); }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.sec-head p { color: var(--text-2); font-size: 1.06rem; margin: 0; }
.grad-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Dividers — varied, never repeated */
.divider { position: absolute; left: 0; right: 0; height: 90px; pointer-events: none; z-index: 1; }
.divider svg { width: 100%; height: 100%; display: block; }
.divider.top { top: -1px; }
.divider.bottom { bottom: -1px; }

/* Alternating section backgrounds (smooth blends, not hard cutoffs) */
.blend-1 { background: linear-gradient(180deg, transparent 0%, rgba(10, 18, 40, 0.75) 18%, rgba(10, 18, 40, 0.75) 82%, transparent 100%); }
.blend-2 { background: radial-gradient(1000px 520px at 50% 50%, rgba(37, 99, 235, 0.08), transparent 70%); }
.blend-3 { background: linear-gradient(180deg, transparent, rgba(14, 23, 50, 0.6) 25%, rgba(14, 23, 50, 0.6) 75%, transparent); }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.orb-blue { background: rgba(37, 99, 235, 0.22); }
.orb-orange { background: rgba(249, 115, 22, 0.15); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 84px) 0 150px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px 8px 10px;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: 999px;
  font-size: 0.88rem; color: var(--text-2); margin-bottom: 26px; backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); font-weight: 800; margin-bottom: 24px; }
.hero .lead { font-size: 1.16rem; color: var(--text-2); max-width: 560px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; color: var(--text-2); font-size: 0.94rem; }
.hero-trust svg { width: 17px; height: 17px; stroke: var(--orange-2); flex: none; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-logo-wrap {
  position: relative; width: min(400px, 88%);
  animation: floaty 7s ease-in-out infinite;
}
.hero-logo-wrap img { width: 100%; filter: drop-shadow(0 30px 60px rgba(37, 99, 235, 0.35)); }
.hero-logo-wrap::before {
  content: ""; position: absolute; inset: 8% 4%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35), rgba(249, 115, 22, 0.12) 60%, transparent 75%);
  filter: blur(40px);
}
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-0.5deg); } 50% { transform: translateY(-18px) rotate(0.5deg); } }
.hero-chip {
  position: absolute; background: rgba(10, 17, 36, 0.85); border: 1px solid var(--stroke);
  border-radius: 14px; padding: 11px 16px; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 9px; backdrop-filter: blur(10px);
  box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite;
}
.hero-chip svg { width: 17px; height: 17px; }
.hero-chip.c1 { top: 6%; left: -6%; animation-delay: 0.8s; color: #93c5fd; }
.hero-chip.c2 { bottom: 20%; right: -8%; animation-delay: 1.6s; color: var(--orange-2); }
.hero-chip.c3 { bottom: -4%; left: 8%; animation-delay: 2.4s; color: #6ee7b7; }

/* hero bottom blend into next section */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 190px;
  background: linear-gradient(180deg, transparent, rgba(10, 18, 40, 0.65));
  pointer-events: none;
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; z-index: 2; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 2; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; position: relative; z-index: 2; }

.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform 0.35s ease, border-color 0.3s, box-shadow 0.4s ease;
}
.card:hover { transform: translateY(-7px); border-color: rgba(59, 130, 246, 0.4); box-shadow: var(--shadow), var(--glow-blue); }
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity: 0.6;
}

/* Product card */
.p-card { display: flex; flex-direction: column; }
.p-card .p-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.p-icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); border: 1px solid rgba(59, 130, 246, 0.3); flex: none;
}
.p-icon svg { width: 27px; height: 27px; }
.p-card:nth-child(3n+2) .p-icon { background: var(--orange-soft); border-color: rgba(249, 115, 22, 0.3); }
.p-card:nth-child(3n) .p-icon { background: rgba(16, 185, 129, 0.13); border-color: rgba(16, 185, 129, 0.3); }
.p-badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; background: var(--grad-cta); color: #fff; white-space: nowrap;
}
.p-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.p-card .p-short { color: var(--text-2); font-size: 0.95rem; flex: 1; }
.p-stats { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.p-stat {
  font-size: 0.78rem; color: var(--text-2); background: var(--surface);
  border: 1px solid var(--stroke-soft); padding: 5px 11px; border-radius: 999px;
  display: inline-flex; gap: 6px; align-items: center;
}
.p-stat b { color: var(--text); font-weight: 600; }
.p-credit { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--text-2); margin-bottom: 20px; }
.p-credit svg { width: 16px; height: 16px; stroke: var(--orange-2); flex: none; }
.p-credit b { color: var(--orange-2); }
.p-actions { display: flex; gap: 10px; margin-top: auto; }
.p-actions .btn { flex: 1; justify-content: center; }

/* overlap into hero boundary */
.overlap-up { margin-top: -72px; position: relative; z-index: 3; }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; position: relative; z-index: 2; }
.filter-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  padding: 10px 22px; border-radius: 999px; cursor: pointer;
  background: var(--surface); color: var(--text-2); border: 1px solid var(--stroke);
  transition: all 0.25s ease;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.filter-btn.active { background: var(--grad-blue); color: #fff; border-color: transparent; box-shadow: var(--glow-blue); }
.p-card.hide { display: none; }

/* ---------- Benefits ---------- */
.benefit { padding: 28px; }
.benefit .b-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft); border: 1px solid rgba(249, 115, 22, 0.25); margin-bottom: 18px;
}
.benefit:nth-child(even) .b-icon { background: var(--blue-soft); border-color: rgba(59, 130, 246, 0.3); }
.benefit .b-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.12rem; margin-bottom: 8px; }
.benefit p { color: var(--text-2); font-size: 0.94rem; margin: 0; }

/* ---------- Pricing ---------- */
.price-note {
  max-width: 820px; margin: 0 auto 46px; text-align: center; position: relative; z-index: 2;
  background: var(--blue-soft); border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 18px 26px; border-radius: 16px; color: var(--text-2); font-size: 0.97rem;
}
.price-note b { color: var(--text); }
.price-card { display: flex; flex-direction: column; text-align: left; }
.price-card .pc-panel { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.price-card .pc-panel .p-icon { width: 48px; height: 48px; border-radius: 13px; }
.price-card .pc-panel .p-icon svg { width: 22px; height: 22px; }
.price-card h3 { font-size: 1.15rem; margin: 0; }
.price-card .pc-credit {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin: 6px 0 4px;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card .pc-sub { color: var(--text-3); font-size: 0.88rem; margin-bottom: 18px; }
.price-card ul.pc-feats { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.price-card ul.pc-feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.92rem; color: var(--text-2); }
.price-card ul.pc-feats svg { width: 16px; height: 16px; stroke: var(--green); flex: none; margin-top: 3px; }

/* Comparison table (desktop) -> cards (mobile) */
.cmp-wrap { position: relative; z-index: 2; overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--stroke); background: rgba(9, 15, 33, 0.6); backdrop-filter: blur(10px); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 760px; }
table.cmp th, table.cmp td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--stroke-soft); }
table.cmp thead th { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); background: rgba(255,255,255,0.03); }
table.cmp tbody tr { transition: background 0.2s; }
table.cmp tbody tr:hover { background: rgba(59, 130, 246, 0.06); }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp td .cell-panel { display: flex; align-items: center; gap: 12px; font-weight: 600; font-family: var(--font-display); }
table.cmp td .cell-panel .p-icon { width: 40px; height: 40px; border-radius: 11px; }
table.cmp td .cell-panel .p-icon svg { width: 19px; height: 19px; }
.tag-yes { color: #6ee7b7; font-weight: 600; font-size: 0.9rem; }
.tag-no { color: var(--text-3); font-size: 0.9rem; }
.cmp-credit { font-weight: 600; color: var(--orange-2); font-size: 0.93rem; white-space: nowrap; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; position: relative; z-index: 2; }
.step { text-align: center; padding: 28px 18px; position: relative; }
.step .s-num {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  background: var(--surface-2); border: 1px solid var(--stroke); color: var(--text);
  position: relative; z-index: 2; transition: all 0.3s;
}
.step:hover .s-num { background: var(--grad-cta); border-color: transparent; box-shadow: var(--glow-orange); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 59px; left: calc(50% + 42px); width: calc(100% - 84px); height: 2px;
  background: linear-gradient(90deg, rgba(59,130,246,0.5), rgba(249,115,22,0.35)); z-index: 1;
}
.step h3 { font-size: 1.02rem; margin-bottom: 7px; }
.step p { color: var(--text-2); font-size: 0.89rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--stroke); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.faq-item.open { border-color: rgba(249, 115, 22, 0.4); background: var(--surface-2); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 21px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text);
}
.faq-q .fq-icon {
  width: 30px; height: 30px; flex: none; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); transition: transform 0.35s ease, background 0.3s;
}
.faq-q .fq-icon svg { width: 15px; height: 15px; stroke: #93c5fd; }
.faq-item.open .fq-icon { transform: rotate(45deg); background: var(--orange-soft); }
.faq-item.open .fq-icon svg { stroke: var(--orange-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-2); font-size: 0.96rem; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; padding: 130px 0 150px; overflow: hidden; }
.final-cta .cta-box {
  position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.14), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(255,255,255,0.12); border-radius: 34px; padding: 70px 40px;
  backdrop-filter: blur(14px); box-shadow: var(--shadow);
}
.final-cta .cta-box::before {
  content: ""; position: absolute; inset: -1px; border-radius: 34px; padding: 1px; z-index: -1;
  background: linear-gradient(140deg, rgba(59,130,246,0.6), transparent 35%, transparent 65%, rgba(249,115,22,0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.final-cta h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.final-cta p { color: var(--text-2); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; }
.final-cta .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; padding: 90px 0 0;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 24, 0.9) 22%);
  border-top: 1px solid var(--stroke-soft);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 60px; }
.footer-brand img { width: 64px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-2); font-size: 0.94rem; max-width: 320px; }
.footer-col h4 { font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--text-2); font-size: 0.95rem; transition: color 0.2s, padding-left 0.25s; }
.footer-col a:hover { color: var(--orange-2); padding-left: 5px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-2); font-size: 0.95rem; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--orange-2); }
.footer-contact a { color: var(--text-2); }
.footer-contact a:hover { color: var(--orange-2); }
.footer-bottom {
  border-top: 1px solid var(--stroke-soft); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center; color: var(--text-3); font-size: 0.88rem;
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--text); }

/* ---------- Floating WhatsApp + sticky mobile CTA ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #0e2a1c; border: 1px solid rgba(37, 211, 102, 0.45);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.3s ease;
}
.wa-float:hover { transform: translateY(-3px); background: #1fbd5c; box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 27px; height: 27px; fill: #25d366; transition: fill 0.25s; }
.wa-float:hover svg { fill: #fff; }

.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 91; display: none;
  transform: translateY(120%); transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; padding: 16px; border-radius: 16px; font-size: 1.02rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + 74px) 0 90px; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(180deg, transparent, rgba(10, 18, 40, 0.55)); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.87rem; color: var(--text-3); margin-bottom: 26px; }
.breadcrumbs a { color: var(--text-2); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--orange-2); }
.breadcrumbs span[aria-hidden] { color: var(--text-3); }
.breadcrumbs [aria-current] { color: var(--orange-2); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); max-width: 800px; }
.page-hero .lead { color: var(--text-2); font-size: 1.12rem; max-width: 680px; margin: 0; }

/* ---------- Product detail ---------- */
.pd-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: start; position: relative; z-index: 2; }
.pd-main .card { margin-bottom: 26px; }
.pd-side { position: sticky; top: calc(var(--nav-h) + 24px); }
.pd-side .card { padding: 26px; }
.spec-list { display: flex; flex-direction: column; gap: 0; }
.spec-list li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--stroke-soft); font-size: 0.95rem; }
.spec-list li:last-child { border-bottom: none; }
.spec-list .k { color: var(--text-3); }
.spec-list .v { color: var(--text); font-weight: 600; text-align: right; }
.stat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 22px 0 8px; }
.stat-tile { background: var(--surface); border: 1px solid var(--stroke-soft); border-radius: 15px; padding: 18px 12px; text-align: center; }
.stat-tile .n { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-tile .l { font-size: 0.78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.feat-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feat-checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--text-2); }
.feat-checks svg { width: 17px; height: 17px; stroke: var(--green); flex: none; margin-top: 3px; }
.prose h2 { font-size: 1.6rem; margin-top: 8px; }
.prose h3 { font-size: 1.2rem; }
.prose p, .prose li { color: var(--text-2); }
.prose ul.bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1em; }
.prose ul.bullets li { display: flex; gap: 10px; align-items: flex-start; }
.prose ul.bullets li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-cta); flex: none; margin-top: 9px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.contact-card { text-align: center; padding: 40px 28px; }
.contact-card .c-icon {
  width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card .c-icon.wa { background: rgba(37, 211, 102, 0.14); border: 1px solid rgba(37, 211, 102, 0.3); }
.contact-card .c-icon.tg { background: rgba(59, 130, 246, 0.14); border: 1px solid rgba(59, 130, 246, 0.3); }
.contact-card .c-icon.em { background: var(--orange-soft); border: 1px solid rgba(249, 115, 22, 0.3); }
.contact-card .c-icon svg { width: 30px; height: 30px; }
.contact-card h3 { font-size: 1.2rem; }
.contact-card p { color: var(--text-2); font-size: 0.94rem; }
.contact-card .c-val { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; margin-bottom: 20px; display: block; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }

/* ---------- 404 ---------- */
.err-page { min-height: 82vh; display: flex; align-items: center; text-align: center; padding: calc(var(--nav-h) + 60px) 0 80px; }
.err-code { font-family: var(--font-display); font-size: clamp(5rem, 16vw, 9rem); font-weight: 800; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Responsive ---------- */
/* Compact header for smaller laptops (nav fits on one line) */
@media (max-width: 1200px) and (min-width: 1025px) {
  .brand { font-size: 0.95rem; gap: 9px; }
  .brand img { width: 38px; height: 38px; }
  .nav-links { gap: 1px; }
  .nav-links a { padding: 8px 9px; font-size: 0.88rem; }
  .nav-cta { font-size: 0.85rem; padding: 9px 14px; margin-left: 2px; }
  .search-link { width: 36px; height: 36px; }
}

/* Below laptop width: switch to hamburger navigation */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .search-toggle-mobile { display: inline-flex; margin-left: auto; margin-right: 4px; }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-chip.c1 { left: 0; }
  .hero-chip.c2 { right: 0; }
  .hero-chip.c3 { left: 4%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pd-grid { grid-template-columns: 1fr; }
  .pd-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }
  .section { padding: 76px 0; }
  .glow-orb { max-width: 58vw; max-height: 58vw; }
  .hero { padding: calc(var(--nav-h) + 52px) 0 120px; }
  .hero-chip { font-size: 0.78rem; padding: 9px 13px; }
  .hero-chip.c3 { left: 0; bottom: -8%; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .feat-checks { grid-template-columns: 1fr; }
  .p-actions { flex-direction: column; }
  .wa-float { display: none; }
  .sticky-cta { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 90px 0 120px; }
  .final-cta .cta-box { padding: 48px 24px; }
  /* comparison table becomes stacked cards */
  .cmp-wrap { border: none; background: none; backdrop-filter: none; overflow: visible; }
  table.cmp, table.cmp tbody, table.cmp tr, table.cmp td { display: block; width: 100%; min-width: 0; }
  table.cmp thead { display: none; }
  table.cmp tr {
    margin-bottom: 18px; border: 1px solid var(--stroke); border-radius: var(--radius);
    background: rgba(9, 15, 33, 0.7); padding: 8px 4px;
  }
  table.cmp td { border-bottom: 1px dashed var(--stroke-soft); padding: 12px 18px; }
  table.cmp td:last-child { border-bottom: none; }
  table.cmp td::before {
    content: attr(data-label); display: block; font-size: 0.74rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 4px; font-weight: 700;
  }
}

@media (max-width: 420px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stat-tiles { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   v2 — panel images, search, live chat, mobile fixes
   ============================================================ */

/* --- Mobile button wrap fix (long labels must not stretch page) --- */
@media (max-width: 520px) {
  .btn { white-space: normal; text-align: center; justify-content: center; line-height: 1.35; }
}
.spec-list .v { overflow-wrap: break-word; min-width: 0; }
.spec-list .k { flex: none; }

/* --- Panel imagery --- */
.p-media {
  margin: -30px -30px 20px; height: 168px; overflow: hidden; position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.p-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 0.6s ease; }
.p-card:hover .p-media img { transform: scale(1.06); }
.p-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,13,31,0) 55%, rgba(7,13,31,0.55));
}
.pd-media { margin: -26px -26px 20px; height: 200px; overflow: hidden; border-radius: 24px 24px 0 0; position: relative; }
.pd-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.pd-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,13,31,0) 60%, rgba(7,13,31,0.45));
}

/* --- Header search --- */
.search-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px; color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.search-link:hover { color: var(--text); background: var(--surface-2); }
.search-link svg { width: 19px; height: 19px; }
.search-toggle-mobile { display: none; }

/* --- Search page --- */
.search-hero-box { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.search-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-2); border: 1px solid var(--stroke);
  border-radius: 18px; padding: 8px 8px 8px 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.search-box:focus-within { border-color: rgba(59,130,246,0.55); box-shadow: var(--glow-blue); }
.search-box > svg { width: 20px; height: 20px; stroke: var(--text-3); flex: none; }
.search-box input {
  flex: 1; background: none; border: none; outline: none; color: var(--text);
  font-family: var(--font-body); font-size: 1.05rem; padding: 12px 0; min-width: 0;
}
.search-box input::placeholder { color: var(--text-3); }
.search-meta { color: var(--text-3); font-size: 0.92rem; margin: 22px 0 30px; min-height: 1.4em; }
.search-results { display: flex; flex-direction: column; gap: 14px; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.search-result {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: 16px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.search-result:hover { border-color: rgba(59,130,246,0.45); transform: translateX(4px); background: var(--surface-2); }
.search-result img { width: 64px; height: 56px; object-fit: cover; border-radius: 11px; flex: none; }
.search-result .sr-icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--blue-soft); border: 1px solid rgba(59,130,246,0.3);
  display: flex; align-items: center; justify-content: center;
}
.search-result .sr-icon svg { width: 21px; height: 21px; stroke: #93c5fd; }
.search-result .sr-body { flex: 1; min-width: 0; }
.search-result .sr-title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; display: block; }
.search-result .sr-desc { color: var(--text-3); font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.search-result > svg { width: 18px; height: 18px; stroke: var(--text-3); flex: none; }
.search-empty { text-align: center; color: var(--text-2); padding: 40px 0; }
.search-empty b { color: var(--text); }

/* --- Panel list search (panels page) --- */
.panel-search {
  display: flex; align-items: center; gap: 11px; max-width: 460px; margin: 0 auto 30px;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: 999px;
  padding: 4px 8px 4px 18px; position: relative; z-index: 2;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.panel-search:focus-within { border-color: rgba(249,115,22,0.5); box-shadow: var(--glow-orange); }
.panel-search svg { width: 17px; height: 17px; stroke: var(--text-3); flex: none; }
.panel-search input {
  flex: 1; background: none; border: none; outline: none; color: var(--text);
  font-size: 0.97rem; padding: 10px 0; min-width: 0; font-family: var(--font-body);
}
.panel-search input::placeholder { color: var(--text-3); }
.no-match { display: none; text-align: center; color: var(--text-2); padding: 34px 0 10px; position: relative; z-index: 2; }
.no-match.show { display: block; }

/* --- Not listed banner --- */
.not-listed {
  position: relative; z-index: 2; margin-top: 46px;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(59,130,246,0.1), rgba(249,115,22,0.08));
  border: 1px dashed rgba(255,255,255,0.22); border-radius: var(--radius-lg);
  padding: 30px 34px;
}
.not-listed h3 { font-size: 1.25rem; margin-bottom: 6px; }
.not-listed p { color: var(--text-2); margin: 0; max-width: 560px; font-size: 0.97rem; }

/* --- Live chat widget --- */
.chat-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(37,211,102,0.45);
  background: #0e2a1c; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, background 0.25s ease;
}
.chat-launcher:hover { transform: translateY(-3px); background: #1fbd5c; }
.chat-launcher svg { width: 26px; height: 26px; fill: #25d366; transition: fill 0.25s; }
.chat-launcher:hover svg { fill: #fff; }
.chat-launcher .chat-dot {
  position: absolute; top: -2px; right: -2px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 2.5px solid var(--bg-0);
}
.chat-panel {
  position: fixed; right: 22px; bottom: 92px; z-index: 96;
  width: min(370px, calc(100vw - 28px));
  background: #0a1128; border: 1px solid var(--stroke); border-radius: 22px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.8);
  overflow: hidden; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-head {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: linear-gradient(120deg, rgba(37,99,235,0.25), rgba(249,115,22,0.15));
  border-bottom: 1px solid var(--stroke-soft);
}
.chat-head img { width: 40px; height: 40px; object-fit: contain; }
.chat-head .ch-title { flex: 1; min-width: 0; }
.chat-head .ch-title b { font-family: var(--font-display); font-size: 0.98rem; display: block; }
.chat-status { display: flex; align-items: center; gap: 7px; color: #6ee7b7; font-size: 0.8rem; }
.chat-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.chat-close {
  background: var(--surface-2); border: 1px solid var(--stroke); border-radius: 9px;
  width: 32px; height: 32px; color: var(--text-2); cursor: pointer; font-size: 1.15rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: color 0.2s, background 0.2s;
}
.chat-close:hover { color: var(--text); background: rgba(255,255,255,0.1); }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; max-height: 330px; overflow-y: auto; }
.chat-msg {
  max-width: 88%; padding: 12px 15px; border-radius: 15px; font-size: 0.92rem; line-height: 1.55;
}
.chat-msg.bot { background: var(--surface-2); border: 1px solid var(--stroke-soft); border-bottom-left-radius: 5px; color: var(--text-2); align-self: flex-start; }
.chat-msg.user { background: rgba(37,211,102,0.14); border: 1px solid rgba(37,211,102,0.3); border-bottom-right-radius: 5px; color: var(--text); align-self: flex-end; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-quick button {
  background: var(--surface); border: 1px solid var(--stroke); color: var(--text-2);
  font-size: 0.82rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; cursor: pointer;
  transition: all 0.22s; font-family: var(--font-body);
}
.chat-quick button:hover { border-color: rgba(37,211,102,0.5); color: #4ade80; background: rgba(37,211,102,0.08); }
.chat-form {
  display: flex; gap: 9px; padding: 13px 14px; border-top: 1px solid var(--stroke-soft);
  background: rgba(255,255,255,0.02);
}
.chat-form input {
  flex: 1; background: var(--surface); border: 1px solid var(--stroke); border-radius: 12px;
  padding: 11px 14px; color: var(--text); font-size: 0.92rem; outline: none; min-width: 0;
  font-family: var(--font-body); transition: border-color 0.2s;
}
.chat-form input:focus { border-color: rgba(37,211,102,0.5); }
.chat-form input::placeholder { color: var(--text-3); }
.chat-form button {
  width: 44px; height: 44px; flex: none; border: none; border-radius: 12px; cursor: pointer;
  background: #1fbd5c; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.chat-form button:hover { background: #22cc66; transform: scale(1.05); }
.chat-form button svg { width: 19px; height: 19px; fill: #fff; }
.chat-foot {
  text-align: center; color: var(--text-3); font-size: 0.76rem; padding: 0 14px 12px;
}
@media (max-width: 768px) {
  .chat-launcher { bottom: 84px; }
  .chat-panel { bottom: 152px; right: 14px; }
  .wa-float { display: none; }
}

/* --- Subscription duration buttons --- */
.sub-durations { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.sub-durations .btn { justify-content: center; padding: 11px 10px; font-size: 0.88rem; }
.sub-card .p-short { flex: none; min-height: 3.2em; }
@media (max-width: 520px) {
  .sub-durations { grid-template-columns: 1fr 1fr; }
  .sub-durations .btn { font-size: 0.85rem; padding: 11px 6px; }
}

/* Ensure mobile search icon wins over base display:none */
@media (max-width: 1024px) {
  .nav-inner .search-toggle-mobile { display: inline-flex; margin-left: auto; margin-right: 4px; }
}

/* --- Hidden premium (secret) panels --- */
.secret-card {
  border-style: dashed; border-color: rgba(249, 115, 22, 0.35);
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.06), rgba(255, 255, 255, 0.02));
  display: flex; flex-direction: column;
}
.secret-card:hover { border-color: rgba(249, 115, 22, 0.6); box-shadow: var(--shadow), var(--glow-orange); }
.secret-blur {
  height: 96px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.035) 0 12px, transparent 12px 24px),
    linear-gradient(140deg, rgba(37,99,235,0.12), rgba(249,115,22,0.1));
  border: 1px solid var(--stroke-soft);
}
.secret-blur svg { width: 34px; height: 34px; stroke: var(--orange-2); opacity: 0.75; }
.secret-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800;
  color: var(--orange-2); background: rgba(5, 9, 20, 0.6); border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(6px);
}
.secret-note { color: var(--text-3); font-size: 0.85rem; margin: 4px 0 22px; flex: 1; }
.secret-teaser { border-color: rgba(249, 115, 22, 0.35); margin-top: 18px; }
