:root {
  --lx-bg: #f6f9fc;
  --lx-bg-alt: #edf4fb;
  --lx-bg-soft: #ffffff;
  --lx-card: #ffffff;
  --lx-border: rgba(31, 70, 114, 0.16);
  --lx-text: #102033;
  --lx-text-soft: #52657d;
  --lx-dark: #071426;
  --lx-dark-alt: #0b1f37;
  --lx-dark-card: #132940;
  --lx-dark-text: #f2f7ff;
  --lx-dark-soft: #c6d5ea;
  --lx-primary: #1f7bff;
  --lx-primary-deep: #105fce;
  --lx-ghost: rgba(31, 123, 255, 0.08);
  --lx-radius: 16px;
}

html,
body {
  background-color: var(--lx-bg) !important;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", "Nunito Sans", sans-serif;
  color: var(--lx-text);
  min-height: 100vh;
  background: linear-gradient(180deg, #f9fbfe 0%, #eef5fb 48%, #f7fafc 100%);
}

main,
.lx-section,
.lx-hero,
.lx-cta-band,
.lx-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lx-container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.lx-hidden { display: none !important; }

.lx-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(5, 14, 26, 0.92);
  border-bottom: 1px solid rgba(158, 187, 214, 0.18);
  box-shadow: 0 10px 30px rgba(0, 12, 28, 0.22);
}

.lx-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 76px;
}

.lx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lx-dark-text);
  text-decoration: none;
  font-weight: 700;
}

.lx-brand picture,
.lx-brand img {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
}

.lx-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: linear-gradient(140deg, #2ca3ff, #1a63cf);
}

.lx-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.lx-nav a {
  color: #c9d6e8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
}

.lx-footer a:visited,
.lx-inline-note a:visited {
  color: inherit;
}

.lx-nav a:visited {
  color: #c9d6e8;
}

.lx-nav a:hover,
.lx-nav a.active,
.lx-nav a.active:visited {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.lx-header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lx-login-link {
  color: #c9d6e8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 0.4rem 0.3rem;
  transition: color 0.2s ease;
}

.lx-login-link:hover {
  color: #ffffff;
}

.lx-lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(158, 187, 214, 0.28);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.lx-lang-switch a {
  color: #c9d6e8;
  border-radius: 999px;
  padding: 0.35rem 0.52rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.lx-lang-switch a.active,
.lx-lang-switch a:hover {
  color: #fff;
  background: linear-gradient(120deg, var(--lx-primary), #39a0ff);
}

.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.lx-btn-primary {
  background: linear-gradient(120deg, var(--lx-primary), #39a0ff);
  border-color: rgba(148, 203, 255, 0.4);
  color: #fff;
}

.lx-btn-primary:hover { background: linear-gradient(120deg, var(--lx-primary-deep), #238ef2); }

.lx-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(158, 187, 214, 0.28);
  color: #dbe8f8;
}

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

.lx-hero .lx-btn-ghost,
.lx-section-dark .lx-btn-ghost,
.lx-cta-band .lx-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(158, 187, 214, 0.28);
  color: #dbe8f8;
}

.lx-hero .lx-btn-ghost:hover,
.lx-section-dark .lx-btn-ghost:hover,
.lx-cta-band .lx-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lx-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
  border: 1px solid rgba(158, 187, 214, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #dbe8f8;
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.lx-menu-toggle::before {
  content: "";
  width: 1.05rem;
  height: 0.75rem;
  background:
    linear-gradient(#dbe8f8, #dbe8f8) 0 0 / 100% 2px no-repeat,
    linear-gradient(#dbe8f8, #dbe8f8) 0 50% / 100% 2px no-repeat,
    linear-gradient(#dbe8f8, #dbe8f8) 0 100% / 100% 2px no-repeat;
}

.lx-menu-toggle:hover,
.lx-menu-toggle:focus-visible,
body.lx-menu-open .lx-menu-toggle {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.lx-hero {
  padding: clamp(2.8rem, 5vw, 5rem) 0 2.4rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(51, 138, 255, 0.28), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(47, 221, 199, 0.16), transparent 32%),
    linear-gradient(180deg, #0d2440 0%, #071426 100%);
  color: var(--lx-dark-text);
}

.lx-hero-compact { padding-bottom: 1rem; }

.lx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.lx-eyebrow {
  margin: 0;
  color: #6cc3ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1, h2, h3 { color: var(--lx-text); }

.lx-hero h1,
.lx-hero h2,
.lx-hero h3 {
  color: var(--lx-dark-text) !important;
}

h1 {
  margin: 0.65rem 0 1rem;
  line-height: 1.1;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}

.lx-hero:not(.lx-hero-compact) h1 {
  font-size: clamp(2rem, 4.1vw, 3.25rem);
}

h2 {
  margin: 0.4rem 0 0.9rem;
  line-height: 1.2;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.lx-lead,
.lx-section-head p,
.lx-kpi p,
.lx-faq p,
.lx-feature-panel p,
.lx-inline-note,
.lx-cta-row p {
  color: var(--lx-text-soft);
}

.lx-hero .lx-lead {
  color: var(--lx-dark-soft);
}

.lx-btn-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.lx-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lx-tags span {
  border: 1px solid var(--lx-border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  color: #dce9f8;
  background: rgba(255, 255, 255, 0.04);
}

.lx-screen-stack {
  position: relative;
  padding-bottom: 2.2rem;
}

.lx-screen-card {
  margin: 0;
  border-radius: var(--lx-radius);
  overflow: hidden;
  border: 1px solid var(--lx-border);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(1, 7, 14, 0.45);
  cursor: zoom-in;
}

.lx-screen-card figcaption,
.lx-shot figcaption {
  padding: 0.7rem 0.85rem;
  font-size: 0.86rem;
  color: #52657d;
}

.lx-hero .lx-screen-card figcaption,
.lx-section-dark .lx-shot figcaption {
  color: #d7e4f7;
}

.lx-screen-card-small {
  position: absolute;
  width: min(52%, 330px);
  right: -1rem;
  bottom: 0;
}

.lx-section { padding: 2.6rem 0; }

.lx-section:not(.lx-section-dark) {
  background: #f7fafc !important;
}

.lx-section.lx-section-alt {
  background: linear-gradient(180deg, #eef5fb, #f8fbfe) !important;
}

#faq.lx-section {
  background: #f7fafc !important;
  color: var(--lx-text) !important;
}

.lx-section-dark {
  background:
    radial-gradient(circle at 8% 10%, rgba(51, 138, 255, 0.16), transparent 30%),
    linear-gradient(180deg, var(--lx-dark-alt), var(--lx-dark));
  border-top: 1px solid rgba(158, 187, 214, 0.12);
  border-bottom: 1px solid rgba(158, 187, 214, 0.12);
  color: var(--lx-dark-text);
}

.lx-section-dark h1,
.lx-section-dark h2,
.lx-section-dark h3 {
  color: var(--lx-dark-text);
}

.lx-section-dark .lx-section-head p,
.lx-section-dark .lx-inline-note {
  color: var(--lx-dark-soft);
}

.lx-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lx-kpi,
.lx-faq,
.lx-price-card,
.lx-feature-panel,
.lx-table-wrap,
.lx-shot {
  border-radius: var(--lx-radius);
  border: 1px solid var(--lx-border);
  background: var(--lx-card);
  box-shadow: 0 16px 38px rgba(29, 55, 84, 0.08);
}

.lx-section-dark .lx-shot {
  border-color: rgba(158, 187, 214, 0.28);
  background: linear-gradient(180deg, rgba(20, 42, 66, 0.8), rgba(12, 31, 51, 0.76));
  box-shadow: none;
}

.lx-kpi { padding: 1.5rem; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.lx-faq { padding: 1.25rem 1.5rem; }

.lx-kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(29, 55, 84, 0.14);
}

.lx-kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lx-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--lx-primary);
}

.lx-home-benefits .lx-kpi-grid {
  gap: 0;
  padding: 1rem;
  border: 1px solid rgba(31, 70, 114, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(16, 43, 76, 0.08);
}

.lx-home-benefits .lx-kpi {
  min-height: auto;
  padding: 0.75rem 1.05rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lx-home-benefits .lx-kpi + .lx-kpi {
  border-left: 1px solid rgba(31, 70, 114, 0.1);
}

.lx-home-benefits .lx-kpi:hover {
  transform: none;
  box-shadow: none;
}

.lx-home-benefits .lx-kpi-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 10px;
}

.lx-home-benefits .lx-kpi h2 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.lx-home-benefits .lx-kpi p {
  font-size: 0.94rem;
  line-height: 1.42;
}

.lx-kpi h2,
.lx-kpi h3,
.lx-faq h3 {
  margin: 0 0 0.4rem;
}

.lx-section-head { margin-bottom: 1rem; }

.lx-theme-switch {
  display: inline-flex;
  border: 1px solid var(--lx-border);
  border-radius: 999px;
  padding: 0.24rem;
  background: rgba(31, 123, 255, 0.06);
  margin-bottom: 1rem;
}

.lx-theme-switch button {
  border: 0;
  background: transparent;
  color: #52657d;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.lx-theme-switch button.active {
  background: rgba(53, 141, 255, 0.28);
  color: #102033;
}

.lx-section-dark .lx-theme-switch {
  background: rgba(255, 255, 255, 0.03);
}

.lx-section-dark .lx-theme-switch button {
  color: #cfe0f5;
}

.lx-section-dark .lx-theme-switch button.active {
  color: #fff;
}

.lx-shot-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lx-shot-grid-large { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.lx-shot { margin: 0; overflow: hidden; }

.lx-shot img,
.lx-screen-card img,
.lx-panel-img-wrap img {
  cursor: zoom-in;
}

.lx-shot:hover,
.lx-screen-card:hover,
.lx-panel-img-wrap:hover {
  border-color: rgba(53, 141, 255, 0.58);
}

.lx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(3, 10, 20, 0.86);
}

.lx-lightbox.open {
  display: flex;
}

.lx-lightbox-dialog {
  width: min(1380px, 96vw);
  max-height: 92vh;
  border-radius: 14px;
  overflow: hidden;
  background: #071426;
  border: 1px solid rgba(158, 187, 214, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.lx-lightbox img {
  width: 100%;
  max-height: calc(92vh - 58px);
  object-fit: contain;
  background: #071426;
}

.lx-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.95rem;
  color: #edf5ff;
  background: rgba(7, 20, 38, 0.96);
}

.lx-lightbox-title {
  margin: 0;
  font-weight: 800;
}

.lx-lightbox-close {
  border: 1px solid rgba(158, 187, 214, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #edf5ff;
  font-weight: 800;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.lx-inline-note a {
  color: #126cdb;
}

.lx-section-dark .lx-inline-note a {
  color: #7ac6ff;
}

.lx-inline-note {
  margin-top: 0.95rem;
}

.lx-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lx-cta-band {
  padding: 2.4rem 0;
  border-top: 1px solid rgba(158, 187, 214, 0.14);
  background: linear-gradient(180deg, rgba(6, 16, 28, 0.95), rgba(6, 16, 28, 1)) !important;
}

.lx-cta-band h2 {
  color: var(--lx-dark-text);
}

.lx-cta-band .lx-cta-row p {
  color: var(--lx-dark-soft);
}

.lx-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.lx-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.lx-price-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 258px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
  box-shadow: 0 18px 48px rgba(16, 43, 76, 0.1);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.lx-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(31, 123, 255, 0.55), rgba(47, 221, 199, 0.48));
  opacity: 0.75;
}

.lx-price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 123, 255, 0.28);
  box-shadow: 0 24px 62px rgba(16, 43, 76, 0.16);
}

.lx-price-card h2 {
  margin: 0;
  font-size: 1.36rem;
  letter-spacing: 0;
}

.lx-price {
  margin: 0.12rem 0 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--lx-text-soft);
  line-height: 1.25;
}

.lx-price span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lx-text-soft);
}

.lx-price-month {
  margin: 0.2rem 0 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lx-text);
  line-height: 1;
}

.lx-price-billing {
  margin: 0.1rem 0 0.55rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--lx-text-soft);
}

.lx-price-card ul {
  margin: 0;
  padding: 0;
  color: var(--lx-text-soft);
  flex: 1;
  list-style: none;
}

.lx-price-card ul li {
  position: relative;
  margin-bottom: 0.52rem;
  padding-left: 1.55rem;
  line-height: 1.35;
}

.lx-price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(31, 123, 255, 0.96), rgba(47, 221, 199, 0.9));
  box-shadow: 0 6px 14px rgba(31, 123, 255, 0.18);
}

.lx-price-card ul li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.42rem;
  width: 0.28rem;
  height: 0.48rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lx-price-card .lx-btn-ghost {
  background: #ffffff;
  border-color: rgba(31, 70, 114, 0.18);
  color: var(--lx-primary-deep);
}

.lx-price-card .lx-btn-ghost:hover,
.lx-price-card .lx-btn-ghost:focus-visible {
  background: var(--lx-ghost);
  border-color: rgba(31, 123, 255, 0.32);
  color: var(--lx-primary-deep);
}

.lx-price-featured {
  border-color: rgba(31, 123, 255, 0.58);
  background:
    radial-gradient(circle at top right, rgba(47, 221, 199, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(240, 247, 255, 0.98));
  box-shadow: 0 30px 80px rgba(22, 88, 164, 0.25);
  transform: translateY(-6px);
}

.lx-price-featured:hover {
  transform: translateY(-9px);
  box-shadow: 0 32px 78px rgba(22, 88, 164, 0.28);
}

.lx-price-featured::before {
  height: 5px;
  opacity: 1;
  background: linear-gradient(90deg, #1f7bff, #39a0ff, #2fddc7);
}

.lx-badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 1;
  margin: 0;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(31, 123, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lx-primary-deep);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(31, 123, 255, 0.12);
}

.lx-price-grid + .lx-inline-note,
.lx-plan-toggle-wrap + .lx-inline-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
  max-width: 100%;
  margin-top: 0.15rem;
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(31, 70, 114, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(16, 43, 76, 0.06);
}

.lx-pricing-note {
  font-size: 0.82rem;
  line-height: 1.45;
}

.lx-pricing-note a {
  white-space: nowrap;
}

/* Plan type toggle */
.lx-plan-toggle-wrap > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

#lx-toggle-p:checked ~ .lx-plans-zakelijk,
#lx-toggle-z:checked ~ .lx-plans-personal { display: none; }

.lx-toggle-bar {
  display: flex;
  background: rgba(16, 43, 76, 0.07);
  border-radius: 2.5rem;
  padding: 0.25rem;
  width: fit-content;
  margin: 0 auto 2rem;
  border: 1px solid rgba(31, 70, 114, 0.12);
}

.lx-toggle-bar label {
  display: inline-block;
  padding: 0.52rem 1.75rem;
  border-radius: 2.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  color: var(--lx-text-soft);
  -webkit-user-select: none;
  user-select: none;
}

.lx-toggle-bar label:hover { color: var(--lx-text); }

#lx-toggle-p:checked ~ .lx-toggle-bar label[for="lx-toggle-p"],
#lx-toggle-z:checked ~ .lx-toggle-bar label[for="lx-toggle-z"] {
  background: #1255b3;
  color: #fff;
  box-shadow: 0 2px 10px rgba(18, 85, 179, 0.3);
}

.lx-price-card .lx-price-month {
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  flex-wrap: nowrap;
  margin: 0.24rem 0 0 !important;
  color: var(--lx-text) !important;
  white-space: nowrap;
}

.lx-price-card .lx-price-amount {
  font-size: clamp(1.95rem, 2.45vw, 2.25rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  color: var(--lx-primary-deep) !important;
}

.lx-price-card .lx-price-period {
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--lx-primary-deep) !important;
}

.lx-price-card .lx-price {
  display: block;
  margin: 0.32rem 0 0 !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: var(--lx-text-soft) !important;
}

.lx-price-card .lx-price span {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--lx-text-soft) !important;
}

.lx-table-wrap {
  padding: 1rem;
  overflow-x: auto;
}

.lx-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.lx-compare-table th,
.lx-compare-table td {
  text-align: left;
  padding: 0.7rem;
  border-bottom: 1px solid rgba(158, 187, 214, 0.2);
}

.lx-compare-table th { color: var(--lx-text); }
.lx-compare-table td { color: var(--lx-text-soft); }
.lx-ct-yes { color: #1a9e5c; font-weight: 700; }
.lx-ct-no { color: var(--lx-text-soft); }
.lx-inline-note-center {
  display: block;
  width: fit-content;
  max-width: 780px;
  margin: 1.35rem auto 0;
  text-align: center;
}
.lx-block { display: block; }

.lx-feature-page-grid {
  display: grid;
  gap: 1rem;
}

.lx-section-tight {
  padding-top: 2.2rem;
  padding-bottom: 0.4rem;
}

.lx-plan-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.lx-plan-mini-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(31, 70, 114, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(16, 43, 76, 0.08);
}

.lx-plan-mini-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.lx-plan-mini-card p {
  margin: 0 0 0.75rem;
  color: var(--lx-text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lx-plan-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.lx-plan-chip-row span,
.lx-plan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(31, 123, 255, 0.18);
  border-radius: 999px;
  background: rgba(31, 123, 255, 0.08);
  color: var(--lx-primary-deep);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
}

.lx-plan-chip-row span {
  padding: 0.3rem 0.5rem;
}

.lx-plan-badge {
  margin: -0.35rem 0 0.72rem;
  padding: 0.34rem 0.62rem;
}

.lx-feature-panel {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.lx-feature-panel h2 {
  margin-top: 0;
  font-size: 1.55rem;
}

.lx-feature-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--lx-text-soft);
}

.lx-contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 0.82fr);
  gap: 1.35rem;
  align-items: start;
  max-width: 1040px;
}

.lx-contact-aside,
.lx-form-card,
.lx-faq-list {
  border-radius: var(--lx-radius);
  border: 1px solid var(--lx-border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(16, 43, 76, 0.1);
}

.lx-contact-aside,
.lx-form-card {
  padding: 1.15rem;
}

.lx-contact-aside h2,
.lx-form-card h2 {
  margin-top: 0;
}

.lx-contact-aside ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--lx-text-soft);
}

.lx-contact-aside li {
  padding: 0.72rem 0;
  border-top: 1px solid rgba(31, 70, 114, 0.1);
}

.lx-contact-visual {
  overflow: hidden;
  padding: 0;
}

.lx-contact-visual figure {
  margin: 0;
  padding: 0.85rem 0.85rem 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 123, 255, 0.18), transparent 38%),
    linear-gradient(180deg, #10243a 0%, #071426 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lx-contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 18px 40px rgba(0, 12, 28, 0.24);
}

.lx-contact-visual div {
  padding: 1rem 1.15rem 1.15rem;
}

.lx-contact-visual p {
  color: var(--lx-text-soft);
}

.lx-contact-form {
  display: grid;
  gap: 0.68rem;
}

.lx-field {
  display: grid;
  gap: 0.35rem;
}

.lx-field label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--lx-text);
}

.lx-field input,
.lx-field select,
.lx-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(31, 70, 114, 0.18);
  border-radius: 10px;
  background: #ffffff;
  color: var(--lx-text);
  font: inherit;
  padding: 0.66rem 0.78rem;
}

.lx-field textarea {
  min-height: 132px;
  resize: vertical;
}

.lx-field input:focus,
.lx-field select:focus,
.lx-field textarea:focus {
  outline: 3px solid rgba(31, 123, 255, 0.16);
  border-color: rgba(31, 123, 255, 0.55);
}

.lx-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lx-form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--lx-text-soft);
  font-weight: 700;
}

.lx-form-status.is-success { color: #0f7a4d; }
.lx-form-status.is-error { color: #b42318; }

.lx-faq-list {
  padding: 0.4rem 1.15rem;
}

.lx-faq-list details {
  border-bottom: 1px solid rgba(31, 70, 114, 0.1);
  padding: 0.95rem 0;
}

.lx-faq-list details:last-child {
  border-bottom: 0;
}

.lx-faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--lx-text);
}

.lx-faq-list p {
  margin: 0.65rem 0 0;
  color: var(--lx-text-soft);
}

.lx-footer {
  border-top: 1px solid rgba(158, 187, 214, 0.16);
  padding: 3.5rem 0 1.5rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 123, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #101d2d 0%, #071426 100%) !important;
  box-shadow: 0 -18px 45px rgba(0, 12, 28, 0.08);
}

.lx-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.lx-footer-brand {
  max-width: 400px;
}

.lx-footer .lx-footer-brand p {
  margin: 1rem 0 1.75rem;
  color: #aebfd5;
  line-height: 1.65;
  font-size: 0.93rem;
}

.lx-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lx-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  padding-top: 0.25rem;
}

.lx-footer-links h2,
.lx-footer-links h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lx-footer .lx-footer-links a {
  display: block;
  margin: 0 0 0.65rem;
}

.lx-footer .lx-footer-links .lx-footer-social a {
  display: grid;
  grid-template-columns: 1.25rem auto;
  align-items: center;
  column-gap: 0.85rem;
  width: max-content;
  line-height: 1.25;
}

.lx-footer-social .lx-social-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  align-self: center;
  color: #ffffff;
}

.lx-footer-social .lx-social-icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.lx-footer-social .lx-social-icon-linkedin {
  fill: currentColor;
  stroke: none;
}

.lx-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(158, 187, 214, 0.14);
}

.lx-footer p,
.lx-footer a {
  margin: 0;
  color: #c9d6e8;
  text-decoration: none;
  font-size: 0.9rem;
}

.lx-footer a:visited {
  color: #c9d6e8;
}

.lx-footer a:hover,
.lx-footer a:focus-visible {
  color: #ffffff;
}

.lx-footer a { margin-left: 0.9rem; }

.lx-footer-brand .lx-brand,
.lx-footer-actions a,
.lx-footer-links a,
.lx-powered-by a,
.lx-footer-bottom .lx-lang-switch a {
  margin-left: 0;
}

.lx-powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #93a8c3;
  font-size: 0.82rem;
}

.lx-powered-by a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0;
  padding: 0.18rem 0.34rem;
  border-radius: 6px;
  color: #dce8f7;
  font-weight: 800;
}

.lx-powered-by img {
  width: 88px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .lx-kpi-grid,
  .lx-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lx-shot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lx-shot-grid-large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lx-footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lx-home-benefits .lx-kpi:nth-child(odd) {
    border-left: 0;
  }
  .lx-home-benefits .lx-kpi:nth-child(n + 3) {
    border-top: 1px solid rgba(31, 70, 114, 0.1);
  }
}

@media (max-width: 860px) {
  .lx-header {
    max-height: 100svh;
    overflow-y: auto;
  }

  .lx-header-row {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand menu"
      "nav nav"
      "cta cta";
    gap: 0.65rem;
    min-height: 64px;
    padding: 0.62rem 0;
  }

  .lx-brand { grid-area: brand; }
  .lx-menu-toggle { display: inline-flex; grid-area: menu; }
  .lx-nav {
    grid-area: nav;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    width: 100%;
    padding: 0.45rem;
    border: 1px solid rgba(158, 187, 214, 0.22);
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    background: rgba(8, 24, 43, 0.98);
    box-sizing: border-box;
  }
  .lx-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.68rem 0.8rem;
    border-radius: 8px;
    box-sizing: border-box;
  }
  body.lx-menu-open .lx-nav { display: grid; }
  .lx-header-cta {
    grid-area: cta;
    display: none;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.45rem;
    border: 1px solid rgba(158, 187, 214, 0.22);
    border-top: 1px solid rgba(158, 187, 214, 0.1);
    border-radius: 0 0 12px 12px;
    background: rgba(8, 24, 43, 0.98);
    box-sizing: border-box;
  }
  body.lx-menu-open .lx-header-cta { display: grid; }
  .lx-header-cta .lx-btn-primary {
    width: 100%;
    min-height: 44px;
    padding-inline: 0.65rem;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .lx-header-cta .lx-login-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .lx-hero-grid,
  .lx-feature-panel,
  .lx-contact-grid,
  .lx-faq-grid,
  .lx-cta-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .lx-screen-card-small {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
  }

  .lx-footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lx-kpi-grid,
  .lx-price-grid,
  .lx-shot-grid,
  .lx-shot-grid-large,
  .lx-faq-grid { grid-template-columns: 1fr; }

  .lx-home-benefits .lx-kpi + .lx-kpi {
    border-left: 0;
    border-top: 1px solid rgba(31, 70, 114, 0.1);
  }

  .lx-price-card,
  .lx-price-featured,
  .lx-price-featured:hover {
    min-height: 0;
    transform: none;
  }

  .lx-price-grid + .lx-inline-note,
  .lx-plan-toggle-wrap + .lx-inline-note {
    display: flex;
    align-items: flex-start;
  }

  .lx-toggle-bar label {
    padding: 0.45rem 1.1rem;
    font-size: 0.88rem;
  }

  .lx-footer-main,
  .lx-footer-links {
    grid-template-columns: 1fr;
  }

  .lx-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lx-footer a { margin-left: 0; margin-right: 0; }

  .lx-powered-by {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .lx-container {
    width: min(1180px, calc(100% - 1.5rem));
  }

  .lx-brand {
    min-width: 0;
  }

  .lx-header-cta {
    grid-template-columns: 1fr 1fr;
  }

  .lx-lang-switch {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .lx-header-cta {
    grid-template-columns: 1fr;
  }
}

.lx-trustbar {
  border-top: 1px solid var(--lx-border);
  border-bottom: 1px solid var(--lx-border);
  padding: 0.85rem 0;
  background: var(--lx-bg-soft);
}

.lx-trustbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: center;
  align-items: center;
}

.lx-trust-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--lx-text-soft);
}

.lx-trust-item svg {
  color: var(--lx-primary);
  flex-shrink: 0;
}

.lx-prose {
  max-width: 740px;
}

.lx-prose h2 {
  margin: 2rem 0 0.55rem;
}

.lx-prose h2:first-child {
  margin-top: 0;
}

.lx-prose p,
.lx-prose ul {
  color: var(--lx-text-soft);
  line-height: 1.72;
  margin: 0 0 0.85rem;
}

.lx-prose ul {
  padding-left: 1.35rem;
}

.lx-prose a {
  color: var(--lx-primary);
  text-decoration: underline;
}

@media (max-width: 1200px) {
  body {
    background: linear-gradient(180deg, #f9fbfe 0%, #eef5fb 48%, #f7fafc 100%) !important;
  }

  .lx-plan-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lx-section-tight {
    padding-top: 1.35rem;
  }

  .lx-plan-strip {
    grid-template-columns: 1fr;
  }

  .lx-plan-mini-card {
    padding: 0.88rem;
  }
}

/* Inline light/dark switch per feature panel */
.lx-panel-img-wrap {
  position: relative;
}

.lx-panel-theme-switch {
  display: inline-flex;
  border: 1px solid rgba(158, 187, 214, 0.28);
  border-radius: 999px;
  padding: 0.18rem;
  background: rgba(255,255,255,0.06);
  margin-bottom: 0.75rem;
  gap: 0;
}

.lx-panel-theme-switch button {
  background: none;
  border: none;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lx-text-soft);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}

.lx-panel-theme-switch button.active {
  background: linear-gradient(120deg, var(--lx-primary), #39a0ff);
  color: #fff;
}

.lx-panel-img-wrap img.lx-panel-img-hidden {
  display: none;
}
