:root {
  --bg-main: #050509;
  --bg-section: #070811;
  --bg-card: rgba(10, 12, 20, 0.96);
  --accent: #ff6b1a;
  --accent-soft: #ffb347;
  --text-main: #f5f5ff;
  --text-muted: #a1a4b5;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.9);
  --transition-fast: 0.18s ease-out;
  --container-width: 1120px;

  /* Swiper (remove blue defaults everywhere) */
  --swiper-theme-color: var(--accent);
  --swiper-navigation-color: rgba(255,255,255,0.92);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151821 0, #050509 46%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer !important; }
ul { list-style: none; }
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================== HEADER ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: radial-gradient(circle at top, rgba(255, 107, 26, 0.06), transparent 55%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0, #fff 0, #ffd7b3 22%, #ff8e3c 40%, #ff6b1a 65%, #351308 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.8);
  overflow: hidden;
}
.logo-mark span { font-weight: 900; color: #1b0b05; font-size: 1.2rem; }
.logo-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 0.05rem;
}

nav { position: relative; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.nav-links a { position: relative; cursor: pointer; color: var(--text-muted); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: radial-gradient(circle at top left, rgba(255, 107, 26, 0.4), transparent 60%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -4px; }
.nav-toggle span::after { top: 4px; }
.nav-toggle.active span { transform: rotate(45deg); }
.nav-toggle.active span::before { transform: rotate(-90deg) translateX(-4px); }
.nav-toggle.active span::after { opacity: 0; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #140903;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.9), 0 0 42px rgba(255, 107, 26, 0.7);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.95), 0 0 52px rgba(255, 107, 26, 0.85);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.7);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
}
.pill-link:hover { border-color: rgba(255,107,26,0.6); color:#fff; }

/* ===================== SECTION BASE ===================== */
section { position: relative; padding: 4.5rem 0; }
section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 26, 0.08), transparent 60%),
    radial-gradient(circle at bottom right, rgba(240, 168, 76, 0.12), transparent 60%);
}

.section-header { margin-bottom: 2.35rem; }
.section-header-compact { margin-bottom: 1.6rem; }
.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 0.6rem;
}
.section-title { font-size: 1.85rem; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 44rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1.15fr);
  gap: 2.2rem;
  align-items: start;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/bg1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.95), #030308 80%);
  z-index: -2;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.33;
  pointer-events: none;
  z-index: -1;
}
.hero-inner { position: relative; width: 100%; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 590px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.1rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fff, #ffb347, #ff6b1a);
  box-shadow: 0 0 16px rgba(255, 107, 26, 0.85);
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.hero-title span {
  background: linear-gradient(120deg, #fff3e0, #ffb347, #ff6b1a);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 1.03rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 1.05rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin: 1.05rem 0 1.45rem;
}
.hero-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.65);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero-meta {
  margin-top: 1.05rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 46rem;
}
.hero-meta strong { color: #fff; }
.hero-meta-secondary { margin-top: 0.75rem; }

.hero-visual { display: flex; justify-content: flex-end; }
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.hero-visual-card:hover { transform: translateY(-4px); }
.hero-visual-image { width: 100%; height: auto; display: block; position: relative; z-index: 1; }

/* ===================== CARDS ===================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(255, 107, 26, 0.22), transparent 70%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
  mix-blend-mode: screen;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 26, 0.7);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.96);
  background: radial-gradient(circle at top, rgba(255, 107, 26, 0.14), rgba(5, 7, 13, 0.98));
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.7);
}
.card-title { font-size: 1rem; margin-bottom: 0.35rem; }
.card-text { font-size: 0.92rem; color: var(--text-muted); }

.bullet {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.05rem;
  font-size: 0.92rem;
}
.bullet li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #fff, #ffb347, #ff6b1a);
  box-shadow: 0 0 12px rgba(255, 107, 26, 0.8);
  flex-shrink: 0;
}

.aside-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}
.aside-box::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 0 0, rgba(255, 107, 26, 0.2), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.14), transparent 70%);
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}
.aside-box > * { position: relative; z-index: 1; }
.aside-title { margin-bottom: 0.35rem; }
.aside-text { color: var(--text-muted); }
.aside-footnote { margin-top: 1rem; color: var(--text-muted); font-size: 0.9rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.chip {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
}
code.inline {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.lead-muted { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.subhead { margin-bottom: 0.4rem; }

.compatibility-line {
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.compatibility-line strong { color: #fff; }

.cta-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.pill-row { margin-top: 0.85rem; }

/* section backgrounds */
.section-media { position: relative; overflow: hidden; }
.section-media .media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
  z-index: 2;
}
.section-media .media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 58%),
    radial-gradient(circle at bottom, rgba(0,0,0,0.94), #030308 82%);
  pointer-events: none;
  z-index: 1;
}
.section-media .media-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}
.section-media .container { position: relative; z-index: 2; }

/* ===================== Swiper (global styling) ===================== */
.swiper { width: 100%; }

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.92);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
  color: currentColor;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 107, 26, 0.6);
  background: rgba(0,0,0,0.68);
  box-shadow: 0 14px 34px rgba(0,0,0,0.7);
}
.swiper-button-prev:active,
.swiper-button-next:active {
  transform: translateY(0px) scale(0.98);
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

/* ===================== Quick configuration slider ===================== */
.qc-slider { margin-top: 1rem; }

.qc-swiper {
  /* Extra safety: kill blue arrows even if Swiper vars win */
  --swiper-navigation-color: rgba(255,255,255,0.92);
  --swiper-theme-color: var(--accent);
}

.qc-slide-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 18px 48px rgba(0,0,0,0.6);
}


.qc-swiper .swiper-button-prev,
.qc-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 30% 0, rgba(255, 107, 26, 0.18), transparent 55%),
    rgba(0,0,0,0.52);
  backdrop-filter: blur(14px);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,107,26,0.08) inset;
  color: rgba(255,255,255,0.92);
}
.qc-swiper .swiper-button-prev { left: 10px; }
.qc-swiper .swiper-button-next { right: 10px; }

.qc-swiper .swiper-button-prev::after,
.qc-swiper .swiper-button-next::after {
  font-size: 16px;
  color: currentColor;
}

.qc-swiper .swiper-button-prev:hover,
.qc-swiper .swiper-button-next:hover {
  border-color: rgba(255, 107, 26, 0.65);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 24px rgba(255,107,26,0.25);
  transform: translateY(-1px) scale(1.04);
}

.qc-swiper .swiper-button-prev:active,
.qc-swiper .swiper-button-next:active {
  transform: translateY(0px) scale(0.98);
}

/* ===================== Combined showcase (Screenshots + Integrations) ===================== */
.section-showcase { padding-top: 4.5rem; padding-bottom: 4.5rem; }

.showcase-subsection { scroll-margin-top: 90px; } /* nicer anchor offset */
.showcase-divider {
  height: 1px;
  margin: 3rem 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), rgba(255,107,26,0.22), rgba(255,255,255,0.12), transparent);
  opacity: 0.9;
}

/* ===================== Screenshots carousel ===================== */
.screenshots-wrap {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 18px 60px rgba(0,0,0,0.65);
}
.ss-shot {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.ss-shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.ss-shot:hover img {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 107, 26, 0.6);
}

/* ===================== Lightbox ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.lightbox.open { display: block; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
}
.lightbox-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100% - 2rem));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(10, 12, 20, 0.92);
  box-shadow: 0 30px 90px rgba(0,0,0,0.9);
  overflow: hidden;
}
.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  background: rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.92);
  font-size: 26px;
  cursor: pointer;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-counter {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 10px;
}

/* ===================== FAQ ===================== */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: flex-start;
}
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.9);
}
.faq-question {
  padding: 1rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.faq-toggle {
  margin-top: 0.2rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 0, rgba(255, 107, 26, 0.8), rgba(10, 10, 10, 0.95));
  transition: transform 0.18s ease-out;
}
.faq-title { font-size: 0.96rem; font-weight: 700; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}
.faq-item.open .faq-answer { padding-bottom: 1rem; }
.faq-item.open .faq-toggle { transform: rotate(90deg); }
.faq-answer-inner { padding-top: 0.3rem; }

.faq-aside { font-size: 0.92rem; color: var(--text-muted); }
.faq-aside strong { color: #fff; }
.faq-aside-box {
  margin-top: 1.2rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}
.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}
.faq-notes { margin-top: 0.55rem; }

/* ===================== SUPPORT FORM ===================== */
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr);
  gap: 2.3rem;
  align-items: flex-start;
}
.support-container { padding-bottom: 2.2rem; }
.support-header { margin-bottom: 1.3rem; }
.support-text p { font-size: 0.94rem; color: var(--text-muted); margin-bottom: 1rem; }
.support-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.85);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.support-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}
.field { margin-bottom: 0.9rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
}
.field input, .field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 3, 8, 0.95);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.field input:focus, .field textarea:focus {
  border-color: rgba(255, 107, 26, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 107, 26, 0.4);
  background: rgba(8, 8, 14, 0.98);
}
.field textarea { min-height: 110px; resize: vertical; }
.support-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.7rem; }
.support-fineprint { margin-top: 0.9rem; color: rgba(255,255,255,0.72); font-size: 0.92rem; }

/* ===================== FOOTER ===================== */
footer {
  padding: 1.9rem 0 2.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  justify-content: space-between;
  align-items: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: #fff; }

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 40;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: radial-gradient(circle at 30% 0, rgba(255, 107, 26, 0.9), rgba(8, 8, 14, 0.96));
  color: #0b0603;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.9);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.swiper-button-next svg, .swiper-button-prev svg{
  height:45%;
}

header { left: 0; right: 0; width: 100%; }
.nav { width: 100%; }


.tsl-pro{
  --bg: #0b0f17;
  --bg2:#0a0d14;
  --card:#101827;
  --line: rgba(255,255,255,.08);
  --line2: rgba(255,255,255,.06);
  --text:#e6eaf2;
  --muted: rgba(230,234,242,.68);
  --gold:#f59b23;
  --gold2:#ffbe55;
  --shadow: 0 26px 90px rgba(0,0,0,.55), 0 2px 14px rgba(0,0,0,.28);
  --radius: 22px;

  background:
    radial-gradient(800px 500px at 20% 10%, rgba(245,155,35,.20), transparent 60%),
    radial-gradient(900px 600px at 80% 25%, rgba(255,190,85,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  padding: 84px 18px;
}

.tsl-pro__container{max-width:1120px;margin:0 auto}

.tsl-pro__header{text-align:center;margin-bottom:34px}

.tsl-pro__kicker{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color:rgba(255,255,255,.78);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.tsl-pro__title{
  margin:16px auto 10px;
  max-width:860px;
  font-size:clamp(28px, 4vw, 46px);
  line-height:1.05;
  letter-spacing:-.03em;
  font-weight:900;
}

.tsl-pro__subtitle{
  margin:0 auto;
  max-width:820px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

.tsl-pro__cta{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  margin-top:20px;
  flex-wrap:wrap;
}

.tsl-btn{
  appearance:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:-.01em;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
}

.tsl-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}

.tsl-btn--primary{
  border-color:rgba(245,155,35,.55);
  background:linear-gradient(180deg, rgba(245,155,35,.98), rgba(233,140,12,.92));
  color:#0b0f17;
  box-shadow:0 18px 48px rgba(245,155,35,.18), 0 10px 28px rgba(0,0,0,.35);
}

.tsl-btn--primary:hover{border-color:rgba(255,190,85,.78)}
.tsl-btn--ghost{background:rgba(255,255,255,.04)}
.tsl-btn--wide{width:100%;text-align:center}

.tsl-pro__meta{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin:22px auto 0;
  max-width:860px;
}

.tsl-pro__metaItem{
  border:1px solid var(--line2);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:16px;
  padding:12px 14px;
}

.tsl-pro__metaLabel{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(255,255,255,.55);
  font-weight:800;
  margin-bottom:6px;
}

.tsl-pro__metaValue{font-weight:900;letter-spacing:-.01em}

.tsl-pro__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  margin-top:26px;
}

.tsl-card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:
    radial-gradient(700px 400px at 10% 0%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(16,24,39,.96), rgba(10,13,20,.92));
  box-shadow:var(--shadow);
  padding:20px;
  overflow:hidden;
  position:relative;
}

.tsl-card--accent::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:5px;
  background:linear-gradient(90deg, var(--gold), var(--gold2));
  opacity:.95;
}

.tsl-card__title{
  margin:0 0 12px;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.02em;
}

.tsl-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.tsl-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(230,234,242,.92);
  line-height:1.45;
}

.tsl-check{
  width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border:1px solid rgba(245,155,35,.35);
  color:var(--gold2);
  font-weight:1000;
  flex:0 0 auto;
  margin-top:1px;
}

.tsl-note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(245,155,35,.18);
  background:linear-gradient(180deg, rgba(245,155,35,.10), rgba(255,255,255,.02));
  color:rgba(230,234,242,.86);
  font-size:14px;
  line-height:1.55;
}

.tsl-providers-inline{
  margin-top:14px;
  border-radius:18px;
  border:1px solid var(--line2);
  background:rgba(0,0,0,.18);
  padding:14px 14px 12px;
}

.tsl-providers-inline__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.tsl-providers-inline__title{
  margin:0;
  font-size:14px;
  font-weight:900;
  letter-spacing:-.02em;
}

.tsl-providers-inline__subtitle{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.tsl-chips{display:flex;flex-wrap:wrap;gap:10px}

.tsl-chip{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.04);
  color:rgba(230,234,242,.92);
  font-weight:800;
  font-size:13px;
}

.tsl-chip--more{
  border-color:rgba(245,155,35,.22);
  background:rgba(245,155,35,.10);
  color:rgba(255,190,85,.92);
}

.tsl-compare{
  border-radius:18px;
  border:1px solid var(--line2);
  overflow:hidden;
  background:rgba(0,0,0,.18);
}

.tsl-compare__row{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  align-items:center;
  padding:12px 12px;
  gap:10px;
  border-top:1px solid var(--line2);
}

.tsl-compare__row:first-child{border-top:none}

.tsl-compare__head{
  background:linear-gradient(180deg, rgba(245,155,35,.12), rgba(255,255,255,.02));
  font-weight:900;
  letter-spacing:-.01em;
}

.tsl-compare__row > div:nth-child(2),
.tsl-compare__row > div:nth-child(3){
  display:flex;
  justify-content:center;
}

.tsl-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  border:1px solid var(--line2);
  min-width:74px;
}

.tsl-pill--muted{
  color:rgba(230,234,242,.65);
  background:rgba(255,255,255,.04);
}

.tsl-pill--gold{
  color:#0b0f17;
  border-color:rgba(245,155,35,.55);
  background:linear-gradient(180deg, rgba(245,155,35,.98), rgba(233,140,12,.92));
}

.tsl-priceRepeat{
  margin-top:14px;
  border-radius:16px;
  border:1px solid rgba(245,155,35,.18);
  background:linear-gradient(180deg, rgba(245,155,35,.10), rgba(255,255,255,.02));
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}

.tsl-priceRepeat__label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(255,255,255,.60);
  font-weight:900;
}

.tsl-priceRepeat__value{
  font-weight:900;
  letter-spacing:-.01em;
  color:rgba(255,190,85,.95);
}

.tsl-card__actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:12px;
}


@media (max-width:920px){
  .tsl-pro__grid{grid-template-columns:1fr}
  .tsl-pro__meta{grid-template-columns:1fr;max-width:560px}
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {

  .tsl-pro__grid .tsl-card{
    padding: 6px;
  }
  .tsl-pro__grid .tsl-card .tsl-card__title{
    padding: 15px;
  }
  .tsl-compare__row .tsl-label{
    font-size: 14px;
  }
  .nav-links {
    position: absolute;
    inset: 70px 1.5rem auto 1.5rem;
    background: rgba(5, 7, 15, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    padding: 1.1rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    transform-origin: top;
    transform: scaleY(0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
    left:auto;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: scaleY(1); left: auto}
  .nav-cta { margin-top: 0.4rem; width: 100%; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .hero-visual { justify-content: flex-start; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-col, .faq-grid, .support-grid { grid-template-columns: minmax(0, 1fr); }

  .screenshots-wrap { padding: 0.85rem; }
}

@media (max-width: 640px) {
  .hero { padding: 96px 0 60px; align-items: flex-end; }
  .hero-bg { opacity: 0.25; }
  .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .swiper-button-prev,
  .swiper-button-next { display: none; }

  .lightbox-nav { display: none; }
  .lightbox-dialog { width: calc(100% - 1.2rem); }
  .lightbox-image { max-height: 76vh; }
}
