html:root,
body.w-body {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  white-space: normal;
  white-space-collapse: collapse;
  background: #121917;
}

#root {
  display: block;
  min-height: 0;
}

.erp {
  --erp-fg: #e1ebe6;
  --erp-muted: #9ba9a3;
  --erp-border: rgba(48, 64, 57, 0.9);
  --erp-accent: #59b78c;
  --erp-accent-2: #6ccc9f;
  --erp-accent-deep: #166c51;
  --erp-bg: #121917;
  --erp-ease: cubic-bezier(0, 0, 0.3, 1);
  --erp-title-gradient: linear-gradient(180deg, #e1ebe6 54.17%, #59b78c 100%);
  --erp-radius: 5px;
  color: var(--erp-muted);
  background: var(--erp-bg);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.375;
  white-space: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.erp button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.erp-wrap {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

/* —— Header —— */
.erp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background-color: rgba(18, 25, 23, 0.42);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.erp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
}

.erp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.erp-brand img {
  width: 36px;
  height: 36px;
  display: block;
}

.erp-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background-color: rgba(18, 25, 23, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.erp-nav-item {
  position: relative;
}

.erp-nav-btn,
.erp-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s var(--erp-ease);
}

.erp-nav-btn:hover,
.erp-nav a:hover,
.erp-nav-btn[aria-expanded='true'] {
  color: #fff;
}

.erp-nav-btn svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform 0.2s var(--erp-ease);
}

.erp-nav-btn[aria-expanded='true'] svg {
  transform: rotate(180deg);
}

.erp-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  padding: 0.65rem;
  border: 1px solid var(--erp-border);
  border-radius: 1rem;
  background: #1c2723;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  display: none;
  z-index: 50;
}

/* Bridge the gap between trigger and panel so hover doesn't drop */
.erp-dropdown.open::before {
  content: '';
  position: absolute;
  inset: -0.75rem 0 auto;
  height: 0.75rem;
}

.erp-dropdown.open {
  display: grid;
  gap: 0.25rem;
}

.erp-dropdown.wide {
  min-width: min(520px, 90vw);
  grid-template-columns: 1fr 1fr;
}

.erp-dropdown a {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
}

.erp-dropdown a:hover {
  border-color: var(--erp-border);
  background: linear-gradient(107deg, #173c2e 0%, #121917 100%);
}

.erp-dropdown strong {
  color: #fff;
  font-weight: 700;
}

.erp-dropdown span {
  color: var(--erp-muted);
  font-size: 0.85rem;
  font-weight: 400;
}

/* —— CTAs (Ascend: radius-2 = 5px) —— */
.erp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--erp-radius);
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s var(--erp-ease), color 0.2s var(--erp-ease), border-color 0.2s var(--erp-ease);
}

.erp a.erp-cta-primary,
.erp .erp-cta-primary {
  background: var(--erp-accent);
  color: #102a20;
  border: 1px solid transparent;
}

.erp a.erp-cta-primary:hover,
.erp .erp-cta-primary:hover {
  background: var(--erp-accent-2);
}

/* Header Demó kérése — solid accent with soft bloom */
.erp a.erp-cta-waitlist,
.erp .erp-cta-waitlist {
  position: relative;
  color: #102a20;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(89, 183, 140, 0.55);
  background: linear-gradient(180deg, #6ccc9f 0%, #57bd90 55%, #59b78c 100%);
  box-shadow:
    0 0 0 1px rgba(89, 183, 140, 0.2),
    0 0 20px rgba(89, 183, 140, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    background 0.2s var(--erp-ease),
    border-color 0.2s var(--erp-ease),
    box-shadow 0.2s var(--erp-ease),
    transform 0.2s var(--erp-ease);
}

.erp a.erp-cta-waitlist:hover,
.erp .erp-cta-waitlist:hover {
  border-color: rgba(168, 229, 200, 0.75);
  background: linear-gradient(180deg, #80d2aa 0%, #6ccc9f 50%, #57bd90 100%);
  box-shadow:
    0 0 0 1px rgba(89, 183, 140, 0.35),
    0 0 28px rgba(89, 183, 140, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.erp a.erp-cta-waitlist:active,
.erp .erp-cta-waitlist:active {
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(89, 183, 140, 0.25),
    0 0 14px rgba(89, 183, 140, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.erp a.erp-cta-ghost,
.erp .erp-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--erp-border);
}

.erp a.erp-cta-ghost:hover,
.erp .erp-cta-ghost:hover {
  background: rgba(40, 39, 41, 0.8);
}

/* Hero white CTA — must beat `.erp a { color: inherit }` */
.erp a.erp-cta-light,
.erp .erp-cta-light {
  background: #fff;
  color: #000 !important;
  border: 1px solid rgba(40, 39, 41, 1);
  font-weight: 500;
}

.erp a.erp-cta-light:hover,
.erp .erp-cta-light:hover {
  background: #f2f2f2;
}

.erp-mobile-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius);
  background: rgba(89, 183, 140, 0.35);
  padding: 0.55rem;
}

.erp-mobile-btn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.erp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.erp-header-actions .erp-cta {
  display: none;
}

.erp-sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #121917;
  padding: 1.25rem;
}

.erp-sheet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.erp-sheet nav {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
}

/* —— Hero —— */
.erp-hero {
  position: relative;
  overflow: visible;
  padding: calc(clamp(5rem, 7vw, 7.5rem) * 1.5) 0 0;
  text-align: center;
  background: #121917;
}

.erp-hero::after {
  content: '';
  position: absolute;
  inset: 0 0 -10rem;
  background: url('/cgi/asset/Group_1_3Lze2enBpFNP3rVOtd0Yp.svg') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 50%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.erp-hero-glow {
  display: none;
}

.erp-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

/* Ascend-style badge: New chip + label */
.erp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1ch 1.25ch;
  border-radius: 999px;
  border: 1px solid rgba(40, 39, 41, 1);
  background: #121917;
  color: var(--erp-accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.erp-eyebrow b {
  display: inline-flex;
  align-items: center;
  background: var(--erp-accent);
  color: #102a20;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.erp-title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(2rem, 9vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -2px;
  padding-bottom: 0.5rem;
  color: transparent;
  background-image: var(--erp-title-gradient);
  background-size: auto;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  text-wrap: pretty;
}

.erp-lede {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--erp-muted);
  text-wrap: balance;
}

.erp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.erp-hero-visual {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2rem));
  margin: 2.75rem auto 0;
}

/* Soft green bloom under the product shot */
.erp-hero-visual::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -18%;
  width: 92%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(89, 183, 140, 0.5) 0%,
    rgba(22, 108, 81, 0.22) 42%,
    transparent 72%
  );
  filter: blur(48px);
  z-index: -1;
  pointer-events: none;
}

.erp-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.erp-section {
  position: relative;
  padding: clamp(5rem, 7vw, 7.5rem) 0;
}

.erp-section-head {
  display: grid;
  gap: 0.9rem;
  max-width: min(52rem, 100%);
  margin: 0 auto 2.6rem;
  text-align: center;
  justify-items: center;
}

.erp-section-head h2 {
  margin: 0;
  max-width: 18ch;
  color: #fff;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.erp-section-head p {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.5;
  color: var(--erp-muted);
}

.erp-trust {
  text-align: center;
  background: #121917;
}

.erp-trust-title {
  margin: 0 auto 1.75rem;
  max-width: 35ch;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--erp-muted);
  text-wrap: balance;
}

.erp-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: stretch;
  justify-items: stretch;
}

.erp-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.5rem;
  padding: 1.25rem 1rem;
  border: 1px solid var(--erp-border);
  border-radius: 1rem;
  background: transparent;
}

.erp-logo-card img {
  max-width: min(150px, 100%);
  width: auto;
  height: auto;
  max-height: 34px;
  opacity: 1;
  filter: none;
}

.erp-modules {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(23, 60, 46, 0.22) 42%,
    transparent 100%
  );
}

.erp-module-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.erp-module {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--erp-border);
  border-radius: 0.9rem;
  background: rgba(28, 39, 35, 0.55);
  display: grid;
  gap: 0.55rem;
}

.erp-module h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.erp-module p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.erp-split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.erp-split-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.erp-panel {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--erp-border);
  border-radius: 1rem;
  overflow: hidden;
  background-color: #141c19;
  background-image:
    linear-gradient(105deg, rgba(18, 25, 23, 0.15) 20%, rgba(18, 25, 23, 0.45) 78%),
    linear-gradient(to right, rgba(48, 64, 57, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(48, 64, 57, 0.09) 1px, transparent 1px),
    radial-gradient(ellipse 110% 130% at 18% 50%, rgba(23, 60, 46, 0.22), transparent 72%);
  background-size: auto, 26% 100%, 100% 36%, auto;
  background-position: 0 0, 16% 0, 0 16%, 0 0;
  min-height: 320px;
  height: 100%;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  display: grid;
  align-content: center;
  align-self: stretch;
  gap: 0.85rem;
}

.erp-panel::before {
  content: '';
  position: absolute;
  left: -6%;
  top: 42%;
  width: min(70%, 26rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(89, 183, 140, 0.07) 0%,
    rgba(22, 108, 81, 0.05) 42%,
    transparent 72%
  );
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

.erp-panel::after {
  content: '';
  position: absolute;
  left: 12%;
  top: 50%;
  width: min(36%, 13rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(89, 183, 140, 0.06);
  box-shadow: 0 0 0 32px rgba(89, 183, 140, 0.018);
  pointer-events: none;
  z-index: 0;
}

figure.erp-panel {
  background-color: #131a18;
  background-image:
    linear-gradient(to right, rgba(48, 64, 57, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(48, 64, 57, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse 70% 90% at 8% 88%, rgba(23, 60, 46, 0.35), transparent 64%);
  background-size: 26% 100%, 100% 36%, auto;
  background-position: 16% 0, 0 16%, 0 0;
}

figure.erp-panel::before {
  left: -18%;
  top: auto;
  bottom: -28%;
  width: min(78%, 28rem);
  transform: none;
  background: radial-gradient(
    circle,
    rgba(22, 108, 81, 0.16) 0%,
    rgba(23, 60, 46, 0.1) 40%,
    transparent 70%
  );
  filter: blur(48px);
}

figure.erp-panel::after {
  content: none;
}

.erp-panel > * {
  position: relative;
  z-index: 1;
}

.erp-panel h2,
.erp-panel strong {
  color: #fff;
}

.erp-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.erp-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.erp-panel blockquote {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.erp-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.erp-list li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  line-height: 1.35;
}

.erp-list img {
  width: 1rem;
  flex-shrink: 0;
}

.erp-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.erp-feature {
  border: 1px solid var(--erp-border);
  border-radius: 0.9rem;
  background: rgba(28, 39, 35, 0.55);
  padding: 1.25rem;
}

.erp-feature h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 700;
}

.erp-feature p {
  margin: 0;
  line-height: 1.45;
}

.erp-pricing {
  background:
    linear-gradient(180deg, #121917 0%, #173c2e 100%),
    url('/cgi/asset/Pricing_NtpbcNgAxOEKqt33rNA--.svg') center top / cover no-repeat;
}

.erp-price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.erp-price {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.5rem;
  border: 1px solid var(--erp-border);
  border-radius: 1rem;
  background: rgba(28, 39, 35, 0.55);
}

.erp-price.featured {
  border-color: rgba(89, 183, 140, 0.65);
  background: linear-gradient(180deg, rgba(89, 183, 140, 0.22), rgba(18, 25, 23, 0.55));
}

.erp-price h3 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.erp-price .amount {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.erp-banner {
  position: relative;
  isolation: isolate;
  margin-top: 2.5rem;
  display: grid;
  gap: 0.95rem;
  justify-items: center;
  text-align: center;
  padding: 2.8rem 1.4rem;
  border: 1px solid var(--erp-border);
  border-radius: 1rem;
  overflow: hidden;
  background-color: #131a18;
  background-image:
    radial-gradient(circle, rgba(89, 183, 140, 0.07) 1px, transparent 1px),
    linear-gradient(to top, rgba(22, 108, 81, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(23, 60, 46, 0.32) 0%, transparent 36%),
    linear-gradient(315deg, rgba(23, 60, 46, 0.28) 0%, transparent 34%),
    linear-gradient(to right, rgba(48, 64, 57, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(48, 64, 57, 0.12) 1px, transparent 1px),
    linear-gradient(to right, rgba(89, 183, 140, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(89, 183, 140, 0.035) 1px, transparent 1px),
    linear-gradient(165deg, rgba(18, 25, 23, 0.55) 0%, rgba(23, 60, 46, 0.42) 48%, rgba(18, 25, 23, 0.5) 100%);
  background-size:
    1.35rem 1.35rem,
    auto,
    auto,
    auto,
    3.25rem 100%,
    100% 3.25rem,
    13rem 100%,
    100% 13rem,
    auto;
  background-position: center;
}

.erp-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(89, 183, 140, 0.12), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(89, 183, 140, 0.1), transparent 36%),
    linear-gradient(90deg, transparent 0%, rgba(89, 183, 140, 0.04) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.erp-banner > * {
  position: relative;
  z-index: 1;
}

.erp-banner h2 {
  margin: 0;
  max-width: 18ch;
  color: #fff;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.erp-banner p {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.erp-footer {
  padding: 3.5rem 0 0;
  border-top: 1px solid var(--erp-border);
  background: #121917;
}

.erp-footer-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr 1fr;
}

.erp-footer-brand {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.7rem;
}

.erp-footer-brand p {
  margin: 0;
  color: #fff;
  font-weight: 500;
}

.erp-footer h3 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.erp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.erp-footer a:hover {
  color: #fff;
}

.erp-footer-bottom {
  margin-top: 2.2rem;
  margin-bottom: 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--erp-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  line-height: 1.2;
}

.erp-footer-bottom a:hover {
  color: #fff;
}

/* —— Legal pages —— */
.erp-legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.erp-legal-top {
  border-bottom: 1px solid var(--erp-border);
  background-color: rgba(18, 25, 23, 0.9);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  position: sticky;
  top: 0;
  z-index: 20;
}

.erp-legal-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.erp-legal-main {
  flex: 1;
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
  grid-template-columns: 1fr;
}

.erp-legal-side {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.erp-legal-side a {
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--erp-border);
  border-radius: var(--erp-radius);
  color: var(--erp-muted);
  font-size: 0.9rem;
}

.erp-legal-side a:hover,
.erp-legal-side a.active {
  color: #fff;
  border-color: rgba(89, 183, 140, 0.55);
  background: rgba(89, 183, 140, 0.12);
}

.erp-legal-article {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.erp-legal-article h1 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.erp-legal-intro {
  margin: 0 0 1.75rem;
  color: var(--erp-muted);
  font-size: 1.05rem;
}

.erp-legal-article h2 {
  margin: 2rem 0 0.75rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.erp-legal-article p {
  margin: 0 0 1rem;
}

.erp-legal-article ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.erp-legal-dl {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.erp-legal-dl-row {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--erp-border);
}

.erp-legal-dl dt {
  color: var(--erp-muted);
  font-size: 0.85rem;
}

.erp-legal-dl dd {
  margin: 0;
  color: #fff;
  font-weight: 500;
}

.erp-legal-foot {
  border-top: 1px solid var(--erp-border);
  padding: 1.25rem 0 2rem;
  font-size: 0.9rem;
}

.erp-legal-foot a:hover {
  color: #fff;
}

/* —— Cookie banner —— */
.erp-cookie {
  position: fixed;
  inset: auto 0 0;
  z-index: 80;
  padding: 1rem;
  pointer-events: none;
}

.erp-cookie-inner {
  pointer-events: auto;
  width: min(920px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--erp-border);
  border-radius: 1rem;
  background: rgba(28, 39, 35, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.erp-cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.erp-cookie-inner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.erp-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .erp-legal-main {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
  }

  .erp-legal-side {
    flex-direction: column;
    position: sticky;
    top: 5.5rem;
  }

  .erp-cookie-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .erp-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .erp-logo-card {
    min-height: 5.5rem;
    padding: 1.5rem 2rem;
  }

  .erp-module-grid,
  .erp-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .erp-split {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  .erp-split-aside {
    align-self: center;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .erp-nav {
    display: flex;
  }

  .erp-mobile-btn {
    display: none;
  }

  .erp-header-actions .erp-cta {
    display: inline-flex;
  }

  .erp-module-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .erp-feature-grid,
  .erp-price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .erp-footer-grid {
    grid-template-columns: 1.4fr repeat(4, 1fr);
  }

  .erp-footer-brand {
    grid-column: auto;
  }
}
