:root {
  --bg: #0c0d12;
  --bg-elevated: #14161f;
  --bg-card: #1a1d28;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f3f7;
  --text-muted: #9aa3b8;
  --accent: #7c6cff;
  --accent-2: #ff6b4a;
  --accent-glow: rgba(124, 108, 255, 0.35);
  --radius: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 70vh;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(255, 107, 74, 0.15), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-size: 0.9em;
  padding: 0.15em 0.45em;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(12, 13, 18, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 32px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-select-wrap {
  display: flex;
  align-items: center;
}

.lang-select {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  padding-right: 28px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239aa3b8' d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: color 0.2s, border-color 0.2s;
}

.lang-select:hover,
.lang-select:focus {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #5a4fd4);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-disabled {
  opacity: 0.85;
  cursor: default;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) clamp(20px, 4vw, 40px) 32px;
}

.hero-detail {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0 0 28px;
  max-width: 40em;
  line-height: 1.65;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-lead {
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 32em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.screens-sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.screens-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 14px auto 0;
  max-width: 52ch;
}

.screenshots-section .screens-carousel {
  max-width: 720px;
  margin: 0 auto;
  outline: none;
}

.carousel-shell {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-slide {
  margin: 0;
  position: relative;
}

.carousel-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  max-height: min(320px, 36vh);
  overflow: hidden;
  padding: 14px 52px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(124, 108, 255, 0.1), transparent),
    #0c0e14;
}

.carousel-slide img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(280px, 32vh);
  height: auto;
  min-height: 0;
  object-fit: contain;
  cursor: zoom-in;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  background: #0e1016;
}

.carousel-caption {
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.carousel-zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 12, 18, 0.75);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.carousel-zoom-btn:hover {
  background: rgba(124, 108, 255, 0.35);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 12, 18, 0.8);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-btn:hover {
  background: rgba(124, 108, 255, 0.4);
}

.carousel-btn--prev {
  left: 12px;
}

.carousel-btn--next {
  right: 12px;
}

.carousel-counter {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-muted);
}

.carousel-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.carousel-thumb {
  flex: 0 0 88px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  scroll-snap-align: start;
  opacity: 0.65;
}

.carousel-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

.carousel-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* Lightbox */
.lightbox[hidden] {
  display: none !important;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
}

.lightbox-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.lightbox-toolbar button,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 22, 30, 0.9);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 1rem;
}

.lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  min-height: 0;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  transition: transform 0.05s linear;
  user-select: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-caption {
  margin: 12px 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.app-window {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 120px rgba(124, 108, 255, 0.08);
  background: #0e1016;
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #2a2d38 0%, #1e2129 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.app-titlebar-name {
  margin-left: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e8eaef;
}

.app-titlebar-tag {
  margin-left: auto;
  font-size: 0.72rem;
  color: #8b93a8;
}

.app-shell {
  display: grid;
  grid-template-columns: 196px 1fr;
  min-height: 460px;
}

.app-sidebar {
  padding: 14px 10px;
  background: #13151c;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.76rem;
  color: #9aa3b8;
  text-decoration: none;
  line-height: 1.2;
}

.nav-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.65;
}

.app-nav.active {
  background: rgba(124, 108, 255, 0.2);
  color: #e8eaff;
  font-weight: 600;
}

.app-nav.active .nav-ico {
  color: #a89bff;
  opacity: 1;
}

.app-main {
  padding: 16px 18px 18px;
  background: #161820;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.app-main-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.app-page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.app-status-line {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.pill-green { background: #34d058; box-shadow: 0 0 8px rgba(52, 208, 88, 0.5); }

.obs-capsule {
  font-size: 0.72rem;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #c5cad6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.monitor-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.monitor-brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 34px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #e8eaef;
}

.monitor-brand strong {
  display: block;
  font-size: 0.85rem;
}

.monitor-brand small {
  display: block;
  font-size: 0.68rem;
  color: #8b93a8;
}

.monitor-camera {
  position: relative;
  min-height: 168px;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, #3d4a62 0%, transparent 55%),
    linear-gradient(160deg, #252a36 0%, #1a1f2a 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.face-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: #e8f0ea;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.face-mesh-svg {
  width: 55%;
  max-width: 220px;
  height: auto;
  opacity: 0.95;
}

.obs-canvas-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.obs-pos-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  color: #9aa3b8;
  margin-bottom: 2px;
}

.obs-pos-val {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #f2f3f7;
}

.obs-pos-hint {
  display: block;
  font-size: 0.55rem;
  color: #7a8499;
  margin-top: 2px;
}

.monitor-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.monitor-panel {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.panel-label {
  display: block;
  font-size: 0.65rem;
  color: #7a8499;
  margin-bottom: 6px;
}

.panel-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.panel-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
}

.panel-value.joy { color: #f5c542; }

.panel-sub {
  display: block;
  font-size: 0.65rem;
  color: #8b93a8;
  margin-top: 4px;
}

.score-bars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.score-bars .bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.score-bars .bar.on {
  background: linear-gradient(90deg, #34d058, #5ee87a);
}

.replay-line,
.total-line {
  margin: 0;
  font-size: 0.78rem;
  color: #c5cad6;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.replay-ok { color: #34d058; font-weight: 700; }

.total-line { margin-top: 8px; }

.total-sub {
  width: 100%;
  font-size: 0.65rem;
  color: #8b93a8;
}

/* Prose & audience */
.prose {
  max-width: 52em;
  margin-bottom: 40px;
}

.prose p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.1em;
}

.section-title.align-left {
  text-align: left;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.audience-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.audience-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Benefits */
.section-benefits {
  padding-top: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.benefit-card {
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.benefit-card:hover {
  border-color: rgba(124, 108, 255, 0.35);
  transform: translateY(-2px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  background: rgba(124, 108, 255, 0.12);
  border-radius: 12px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-family: var(--font-display);
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.card-wide {
  grid-column: 1 / -1;
}

.card-wide p {
  max-width: 56em;
}

.download-extra {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 20px;
  max-width: 36em;
  margin-inline: auto;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px clamp(20px, 4vw, 40px);
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
  max-width: none;
}

.section-alt > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 auto 48px;
  max-width: 36em;
}

.grid.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(124, 108, 255, 0.35);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
  margin-inline: auto;
}

.steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #5a4fd4);
  border-radius: 12px;
  font-size: 1.1rem;
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Requirements */
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.req-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-muted);
}

.req-list li {
  margin-bottom: 10px;
}

.req-note h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.req-note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pricing-card {
  padding: 28px;
  text-align: left;
}

.pricing-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-card__name {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.pricing-card__price {
  margin: 0 0 20px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card__currency {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-card__features {
  margin: 0 0 24px;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-card__features li + li {
  margin-top: 8px;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

.pricing-card__processor {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.pricing-breakdown {
  padding: 24px;
}

.pricing-breakdown__title {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.pricing-table th,
.pricing-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.pricing-table th {
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-breakdown__note,
.pricing-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Download banner */
.section-download {
  padding-bottom: 100px;
}

.download-banner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 52px 40px;
  background: linear-gradient(160deg, rgba(124, 108, 255, 0.14), rgba(255, 107, 74, 0.06));
  border: 1px solid rgba(124, 108, 255, 0.28);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.download-banner__platform {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(124, 108, 255, 0.18);
  border-radius: 999px;
}

.download-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

/* FAQ */
.faq {
  max-width: 640px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Download note */
.download-note {
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* Legal */
.section-legal {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.legal-sub {
  margin-bottom: 20px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.legal-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.legal-nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-block {
  margin-bottom: 20px;
  text-align: left;
}

.legal-block h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.legal-prose {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-prose h4 {
  margin: 18px 0 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.legal-prose ul {
  margin: 8px 0 12px;
  padding-left: 1.25rem;
}

.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose p {
  margin: 0 0 10px;
}

/* Consent modal (TTDSG / GDPR) */
.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 6, 12, 0.82);
  backdrop-filter: blur(8px);
}

.consent-overlay[hidden] {
  display: none !important;
}

body.consent-open {
  overflow: hidden;
}

.consent-modal {
  width: min(520px, 100%);
  max-height: min(88vh, 640px);
  overflow: auto;
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(124, 108, 255, 0.35);
  background: linear-gradient(165deg, #171a24, #12141c);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.consent-modal__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.consent-modal__body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.consent-modal__body p {
  margin: 0 0 12px;
}

.consent-modal__body ul {
  margin: 0 0 14px;
  padding-left: 1.2rem;
}

.consent-modal__body li + li {
  margin-top: 6px;
}

.consent-modal__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 20px 48px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  margin: 10px 0 0;
}

.footer-legal a {
  color: var(--accent);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-lead,
  .hero-detail {
    max-width: none;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    gap: 6px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .app-nav {
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  .app-nav span:not(.nav-ico) {
    display: none;
  }

  .app-nav.active span:not(.nav-ico) {
    display: inline;
  }

  .monitor-panels {
    grid-template-columns: 1fr;
  }

  .nav,
  .header-actions .btn {
    display: none;
  }

  .header-actions .lang-select-wrap {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
  }

  .req-grid {
    grid-template-columns: 1fr;
  }
}
