/* Shopescu marketing — temă light, albastru brand + accente teal */
:root {
  --navy: #0a1628;
  --blue-tint: #e8f2fa;
  --blue-tint-strong: #dceaf7;
  --teal: #1eb8b8;
  --teal-hover: #159696;
  --teal-muted: rgba(30, 184, 184, 0.16);
  --text: #0a1628;
  --text-muted: #55687a;
  --surface: #ffffff;
  --surface-muted: #f5f8fc;
  --border: rgba(10, 22, 40, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", var(--font);
  --shadow: 0 16px 56px rgba(10, 22, 40, 0.09);
  --shadow-sm: 0 4px 24px rgba(10, 22, 40, 0.06);
  --gold: #e8c547;
  --gold-soft: rgba(232, 197, 71, 0.95);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-hover);
}

.wrap {
  width: min(1320px, 94vw);
  margin-inline: auto;
}

/* Chenar CTA umple lățimea .wrap (nu rămâne „strâns” pe stânga) */
.wrap > .cta-band {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(0.65rem, 2vw, 1.35rem);
  padding: 0.85rem 0;
}

.site-header__inner .logo-link {
  grid-column: 1;
  justify-self: start;
}

.site-header__inner .nav-toggle {
  display: none;
  grid-column: 2 / -1;
  justify-self: end;
}

.logo-link img {
  height: 38px;
  width: auto;
}

.logo-link {
  flex-shrink: 0;
}

.nav-links__primary {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.05vw, 1rem);
  flex-wrap: nowrap;
  min-width: 0;
}

@media (min-width: 1040px) {
  .site-header__panel.nav-links {
    display: contents;
  }

  .site-header__nav-center {
    grid-column: 2;
    justify-self: center;
    display: flex;
    justify-content: center;
    min-width: 0;
    width: 100%;
    max-width: min(620px, 52vw);
  }

  .site-header__nav-center .nav-links__primary {
    justify-content: center;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-block: 0.12rem;
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .site-header__nav-center .nav-links__primary::-webkit-scrollbar {
    height: 0;
    width: 0;
  }

  .site-header__cta {
    grid-column: 3;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
  }

  .site-header__cta-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.55rem;
  }

  .site-header__cta-row--logged {
    flex-direction: row;
    gap: 0.65rem;
  }

  .site-header__register-note {
    display: none;
  }
}

.site-header__btn-connect.btn-outline {
  padding: 0.48rem 1rem;
  font-size: 0.8125rem;
}

.site-header__btn-demo.btn-navy {
  padding: 0.48rem 1rem;
  font-size: 0.8125rem;
}

.btn-navy {
  background: linear-gradient(135deg, #132847 0%, var(--navy) 100%);
  color: #fff !important;
  box-shadow: 0 8px 26px rgba(10, 22, 40, 0.28);
}

.btn-navy:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(10, 22, 40, 0.34);
  color: #fff !important;
}

.site-header__panel.nav-links {
  font-size: 0.8125rem;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), #159696);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(30, 184, 184, 0.35);
}

.btn-teal:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(30, 184, 184, 0.45);
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid rgba(10, 22, 40, 0.22);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-hover) !important;
  background: var(--teal-muted);
}

.nav-toggle {
  display: none;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (max-width: 1039px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__inner .nav-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .site-header__panel.nav-links {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 0.9375rem;
    z-index: 60;
  }

  .site-header__panel.nav-links.open {
    display: flex;
  }

  .site-header__nav-center .nav-links__primary {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: inherit;
  }

  .site-header__cta {
    width: 100%;
    align-items: stretch;
    gap: 0.65rem;
  }

  .site-header__cta-row {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .site-header__cta-row--logged {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__btn-connect,
  .site-header__btn-demo {
    width: 100%;
    justify-content: center;
  }

  .site-header__register-note {
    text-align: center;
    padding-top: 0.25rem;
  }

  .nav-links .nav-link {
    white-space: normal;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto -20%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(30, 184, 184, 0.12), rgba(232, 242, 250, 0.5), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    margin-inline: auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--teal-muted);
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--navy);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-metrics {
  display: flex;
  gap: 2rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.metric strong {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
}

.metric span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(165deg, var(--surface), var(--surface-muted));
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hero-visual .mock-head {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.hero-visual .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.15);
}

.hero-visual .dot:nth-child(1) {
  background: #ef4444;
}

.hero-visual .dot:nth-child(2) {
  background: #eab308;
}

.hero-visual .dot:nth-child(3) {
  background: #22c55e;
}

.mock-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mock-row {
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--blue-tint), var(--surface-muted));
  border: 1px solid rgba(10, 22, 40, 0.08);
  animation: pulseRow 4s ease-in-out infinite;
}

.mock-row:nth-child(2) {
  animation-delay: 0.5s;
}

.mock-row:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulseRow {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
    border-color: rgba(30, 184, 184, 0.35);
  }
}

.hero-float {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--teal);
  color: var(--navy);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8125rem;
  box-shadow: var(--shadow);
}

/* Sections */
section {
  padding: clamp(1.35rem, 3.25vw, 2.35rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--surface-muted) 0%, var(--blue-tint) 100%);
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section-head__sub {
  margin: 0 auto;
  max-width: 44rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Cards grid */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(30, 184, 184, 0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

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

/* Plugins */
.plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.plugin-card {
  background: linear-gradient(165deg, var(--surface), var(--surface-muted));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  display: grid;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
}

.plugin-card header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.plugin-card .tag {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--teal-muted);
  color: var(--teal);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  white-space: nowrap;
}

.plugin-card h3 {
  font-family: var(--display);
  font-size: 1rem;
  margin: 0;
  color: var(--navy);
}

.plugin-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.plugin-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* Split feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  background: var(--teal-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231eb8b8' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.code-panel {
  background: linear-gradient(160deg, var(--blue-tint) 0%, var(--blue-tint-strong) 100%);
  border: 1px solid rgba(10, 22, 40, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.code-panel strong {
  color: var(--teal);
}

/* CTA band */
.cta-band {
  margin: 1rem 0;
  padding: clamp(1.35rem, 3.25vw, 2.1rem);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, var(--surface) 0%, var(--blue-tint) 55%, rgba(30, 184, 184, 0.08) 100%);
  border: 1px solid rgba(30, 184, 184, 0.28);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--navy);
  text-align: center;
  width: 100%;
  max-width: 40rem;
}

.cta-band p {
  color: var(--text-muted);
  margin: 0 0 0.95rem;
  max-width: 36rem;
  width: 100%;
  text-align: center;
}

.cta-band .hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface-muted);
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(4, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}

@media (max-width: 1040px) {
  .footer-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-grid-v2 {
    grid-template-columns: 1fr;
  }
}

.footer-brand-v2 img {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand-v2 p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.25rem;
  max-width: 300px;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
}

.footer-social__link:hover {
  color: var(--navy);
  border-color: rgba(10, 22, 40, 0.2);
}

.footer-col-v2 h4 {
  font-family: var(--display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.footer-col-v2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-v2 li {
  margin-bottom: 0.45rem;
}

.footer-col-v2 a {
  color: var(--text);
  font-size: 0.9rem;
}

.footer-col-v2 a:hover {
  color: var(--teal);
}

.footer-contact-list__hours {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-legal__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal__nav a {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-legal__nav a:hover {
  color: var(--teal);
}

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

/* --- Router-driven marketing pages --- */

.nav-links .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-links .nav-link.is-active {
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--teal);
}

.nav-demo {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 1040px) {
  .nav-demo.btn-teal {
    padding: 0.52rem 1.05rem;
    font-size: 0.8125rem;
    box-shadow: 0 6px 22px rgba(30, 184, 184, 0.32);
  }
}

.nav-account-dropdown {
  position: relative;
  align-self: center;
  flex-shrink: 0;
}

.nav-account-dropdown__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  user-select: none;
  width: auto;
  padding: 0.15rem 0;
}

.nav-account-dropdown__summary.nav-link.is-active {
  box-shadow: none;
}

.nav-account-dropdown__summary.nav-link.is-active .nav-account-dropdown__avatar {
  box-shadow:
    0 0 0 2px var(--surface),
    0 0 0 4px var(--teal),
    0 6px 18px rgba(30, 184, 184, 0.38);
}

.nav-account-dropdown__summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 999px;
}

.nav-account-dropdown__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), #159696);
  box-shadow: 0 4px 16px rgba(30, 184, 184, 0.38);
  flex-shrink: 0;
}

.nav-account-dropdown__label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.nav-links .nav-account-dropdown__summary:hover .nav-account-dropdown__label {
  color: var(--text);
}

.nav-account-dropdown__summary::-webkit-details-marker {
  display: none;
}

.nav-account-dropdown__summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  margin-top: 0.12rem;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.nav-account-dropdown[open] > .nav-account-dropdown__summary::after {
  transform: rotate(180deg);
}

.nav-account-dropdown__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  padding: 1rem 1.1rem 1.1rem;
  min-width: min(300px, calc(100vw - 2.5rem));
  max-width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  z-index: 100;
}

.nav-account-dropdown__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.nav-account-dropdown__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.nav-account-dropdown__company {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.nav-account-dropdown__contact {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-account-dropdown__panel .account-summary__meta {
  gap: 0.65rem;
}

.nav-account-dropdown__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.nav-account-dropdown__actions .btn {
  width: 100%;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.nav-account-dropdown__logout {
  margin: 0;
  padding: 0;
}

.nav-account-dropdown__logout-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0.35rem;
  margin: 0;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.nav-account-dropdown__logout-btn:hover {
  color: var(--teal);
}

@media (max-width: 1039px) {
  .nav-account-dropdown {
    width: 100%;
    align-self: stretch;
    max-width: none;
    margin-left: 0;
  }

  .nav-account-dropdown__summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-account-dropdown__panel {
    position: static;
    max-width: none;
    min-width: 0;
    width: 100%;
    margin-top: 0.35rem;
    box-shadow: none;
    z-index: auto;
  }
}

.section-pad {
  padding: clamp(1.15rem, 2.75vw, 2.1rem) 0;
}

.section-pad-top {
  padding-top: 1.25rem;
}

/* --- Pagina principală (landing) --- */
.home-hero {
  padding: clamp(2rem, 5.5vw, 3.75rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.38fr);
  gap: clamp(1.35rem, 3.5vw, 2.75rem);
  align-items: center;
}

@media (max-width: 980px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2rem, 5vw, 2.75rem);
  }

  .home-hero__cta {
    justify-content: center;
  }

  .home-hero__trust {
    margin-inline: auto;
    justify-items: center;
    width: fit-content;
    max-width: 100%;
  }

  .home-hero__lead {
    margin-inline: auto;
  }

  .home-hero__visual {
    max-width: min(760px, 100%);
    margin-inline: auto;
    width: 100%;
  }

  .home-hero__title {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .home-hero__trust {
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: center;
  }

  .home-hero__trust-item {
    justify-content: center;
    text-align: center;
  }
}

.home-hero__badge {
  display: inline-block;
  margin: 0 0 1.35rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  background: rgba(30, 184, 184, 0.14);
  color: var(--teal-hover);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.72rem, 3.35vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0 0 1.35rem;
  max-width: min(38rem, 100%);
}

.home-hero__lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.35rem;
}

.home-hero__cta-primary {
  padding: 0.72rem 1.35rem;
  font-size: 0.9375rem;
}

.home-hero__cta-secondary {
  padding: 0.7rem 1.2rem;
  font-size: 0.9375rem;
}

.home-hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.75rem;
  max-width: 26rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
}

.home-hero__trust-icon {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 0.65rem;
  line-height: 1;
  flex-shrink: 0;
}

.home-hero__visual {
  position: relative;
  min-width: 0;
}

.home-hero__visual-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(0.45rem, 1vw, 0.75rem);
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow:
    0 20px 56px rgba(10, 22, 40, 0.08),
    0 4px 14px rgba(10, 22, 40, 0.04);
}

.home-hero__img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: var(--radius-sm);
}

.home-partners {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.home-partners__kicker {
  text-align: center;
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-partners__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.home-partners__logo {
  font-family: var(--display);
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  font-weight: 700;
  color: rgba(10, 22, 40, 0.35);
  letter-spacing: -0.02em;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.85;
}

.home-partners__logo--img {
  filter: none;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-partners__logo-img {
  display: block;
  max-height: clamp(1.5rem, 3vw, 2rem);
  width: auto;
  max-width: min(140px, 28vw);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
}

a.home-partners__logo-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.15s ease, filter 0.15s ease;
}

a.home-partners__logo-link:hover {
  opacity: 1;
  filter: none;
}

a.home-partners__logo-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

a.home-partners__logo-link .home-partners__logo-img {
  transition: opacity 0.15s ease;
}

a.home-partners__logo-link:hover .home-partners__logo-img {
  opacity: 1;
  filter: grayscale(0);
}

/* --- Home: planuri, testimoniale, CTA final --- */

.home-plans {
  background: var(--surface-muted);
}

.home-plans__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.home-plans__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-plans__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 22ch;
}

.home-plans-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  gap: 4px;
}

.home-plans-toggle__btn {
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.home-plans-toggle__btn.is-active {
  background: var(--navy);
  color: #fff;
}

.home-plans-toggle__badge {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: var(--gold-soft);
  color: var(--navy);
}

.home-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .home-plans__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.home-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-sm);
}

.home-plan-card--featured {
  border-color: rgba(10, 22, 40, 0.28);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
}

.home-plan-card__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  margin: 0;
  padding: 0.28rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1e6bb8 0%, var(--navy) 100%);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

.home-plan-card__head {
  padding-top: 0.35rem;
  text-align: center;
}

.home-plan-card--featured .home-plan-card__head {
  padding-top: 0.85rem;
}

.home-plan-card__name {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.home-plan-card__price {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--navy);
}

.home-plan-card__interval {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.home-plan-card__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.home-plan-card__features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  flex: 1;
}

.home-plan-card__features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.home-plan-card__check {
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
  font-weight: 800;
  color: var(--teal);
}

.home-plan-card--featured .home-plan-card__check {
  color: #1e6bb8;
}

.home-plan-card__footer {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.home-plan-card__form {
  margin: 0;
}

.home-plan-card__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.home-plan-card__guest {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.home-plan-card__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.home-plan-card__sub:hover {
  color: var(--teal);
}

.home-plans__footnote {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.home-testimonials__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.home-testimonials__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-testimonials__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.home-testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 959px) {
  .home-testimonials__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    padding-bottom: 0.25rem;
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
  }
}

.home-testimonial-card {
  margin: 0;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 959px) {
  .home-testimonial-card {
    flex: 0 0 min(340px, 86vw);
    scroll-snap-align: center;
  }
}

.home-testimonial-card__stars {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.home-testimonial-card__quote {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.home-testimonial-card__quote--rich p {
  margin: 0 0 0.65em;
}

.home-testimonial-card__quote--rich p:last-child {
  margin-bottom: 0;
}

.home-testimonial-card__quote--rich ul,
.home-testimonial-card__quote--rich ol {
  margin: 0.5em 0;
  padding-left: 1.25em;
}

.home-testimonial-card__quote--rich blockquote {
  margin: 0.5em 0;
  padding-left: 0.85em;
  border-left: 3px solid var(--gold);
  color: var(--text-muted);
}

.home-testimonial-card__quote--rich a {
  color: var(--teal-muted);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.home-testimonial-card__quote--rich table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 0.5em 0;
}

.home-testimonial-card__quote--rich th,
.home-testimonial-card__quote--rich td {
  border: 1px solid rgba(15, 45, 85, 0.12);
  padding: 0.35em 0.5em;
  vertical-align: top;
}

.home-testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.home-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-tint-strong), var(--teal-muted));
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.home-testimonial-card__avatar--photo {
  padding: 0;
  background: #e8eef5;
}

.home-testimonial-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-testimonial-card__name {
  display: block;
  font-style: normal;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
}

.home-testimonial-card__role {
  margin: 0.1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.home-testimonials__dots {
  display: none;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

@media (max-width: 959px) {
  .home-testimonials__dots {
    display: flex;
  }
}

.home-testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.18);
  cursor: pointer;
}

.home-testimonials__dot.is-active {
  background: var(--navy);
  transform: scale(1.15);
}

.home-bottom-cta {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
}

.home-bottom-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(125deg, #0d1f3a 0%, var(--navy) 45%, #132a45 100%);
  border-radius: var(--radius);
  color: #e8f0fa;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.18);
}

.home-bottom-cta__copy {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1 1 280px;
  max-width: 640px;
}

.home-bottom-cta__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  opacity: 0.95;
}

.home-bottom-cta__text {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.55;
}

.home-bottom-cta__btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--navy);
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.home-bottom-cta__btn:hover {
  background: #f0f4f8;
  color: var(--navy);
}

/* Comparație Shopescu vs WooCommerce — home */
.home-compare {
  padding: clamp(3rem, 7vw, 5.25rem) 0;
  background:
    radial-gradient(ellipse 900px 420px at 12% 35%, rgba(30, 184, 184, 0.08), transparent 55%),
    linear-gradient(165deg, #020810 0%, #061526 45%, #040c16 100%);
  color: #fff;
}

.home-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

.home-compare__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.home-compare__title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #fff;
}

.home-compare__lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

.home-compare__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.45rem;
  border-radius: 999px;
  background: #fff;
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-compare__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
  color: var(--navy) !important;
}

.home-compare__board-wrap {
  min-width: 0;
}

.home-compare-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(168px, 0.95fr) minmax(168px, 0.95fr);
  gap: 0 clamp(0.65rem, 2vw, 1.35rem);
  align-items: start;
}

.home-compare-board__features {
  display: flex;
  flex-direction: column;
}

.home-compare-board__feature-spacer {
  min-height: 3.35rem;
  flex-shrink: 0;
}

.home-compare-board__feature {
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.25rem 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.home-compare-board__feature:last-child {
  border-bottom: none;
}

.home-compare-board__col {
  display: flex;
  flex-direction: column;
}

.home-compare-board__col--shopescu {
  border-radius: var(--radius);
  background: rgba(120, 188, 236, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(70, 150, 210, 0.12),
    0 18px 52px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.home-compare-board__head {
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.85rem;
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.home-compare-board__col--shopescu .home-compare-board__head {
  background: rgba(90, 170, 228, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-compare-board__col--wc .home-compare-board__head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-compare-board__cell {
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.home-compare-board__col--shopescu .home-compare-board__cell {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.home-compare-board__cell:last-child {
  border-bottom: none;
}

.home-compare-board__icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1;
}

.home-compare-board__icon--yes {
  background: rgba(61, 214, 140, 0.22);
  color: #6ee7b7;
}

.home-compare-board__icon--no {
  background: rgba(248, 113, 113, 0.2);
  color: #fca5a5;
}

@media (max-width: 960px) {
  .home-compare__grid {
    grid-template-columns: 1fr;
  }

  .home-compare__board-wrap {
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }

  .home-compare-board {
    min-width: 520px;
  }
}

.page-hero {
  padding: clamp(1.6rem, 4vw, 2.65rem) 0 clamp(1.35rem, 3vw, 2.1rem);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 380px at 12% -8%, rgba(30, 184, 184, 0.1), transparent 55%),
    radial-gradient(800px 320px at 90% 0%, rgba(232, 242, 250, 0.95), transparent 55%);
}

.page-hero--home {
  border-bottom: none;
  padding-top: clamp(3rem, 8vw, 5rem);
}

.page-hero--compact {
  text-align: center;
}

.page-hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--navy);
}

.page-hero__lead {
  margin: 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.magazin-h3 {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.5rem 0 0.65rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.split .magazin-h3:first-of-type {
  margin-top: 0;
}

.magazin-admin-intro {
  max-width: 48rem;
  margin: 0 auto 2.25rem;
  text-align: center;
  font-size: 1rem;
}

.magazin-admin-detail {
  max-width: 52rem;
  margin-inline: auto;
}

.magazin-admin-detail .check-list li {
  margin-bottom: 0.45rem;
}

/* Pagina Magazin — layout & accente */
.page-hero--magazin {
  position: relative;
  overflow: hidden;
  border-bottom: none;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
  background:
    radial-gradient(ellipse 110% 70% at 50% -15%, rgba(30, 184, 184, 0.16), transparent 55%),
    linear-gradient(180deg, #f4f9fc 0%, var(--surface) 55%, var(--surface) 100%);
}

.page-hero--magazin::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(30, 58, 95, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(30, 184, 184, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero--magazin__inner {
  position: relative;
  z-index: 1;
}

.page-hero__lead--magazin {
  max-width: 48rem;
}

.magazin-hero__note {
  margin: 1rem 0 0;
  max-width: 44rem;
  font-size: 0.975rem;
}

.magazin-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.section--magazin-vitrina {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.magazin-vitrina__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

@media (max-width: 900px) {
  .magazin-vitrina__grid {
    grid-template-columns: 1fr;
  }
}

.magazin-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.magazin-panel:hover {
  box-shadow: var(--shadow);
  border-color: rgba(30, 184, 184, 0.28);
  transform: translateY(-2px);
}

.magazin-panel .magazin-h3:first-child {
  margin-top: 0;
}

.check-list--magazin li {
  margin-bottom: 0.5rem;
}

.section--magazin-admin {
  background: linear-gradient(
    180deg,
    var(--blue-tint) 0%,
    var(--surface-muted) 40%,
    var(--blue-tint-strong) 100%
  );
}

.magazin-toc {
  max-width: 52rem;
  margin: 0 auto 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.magazin-toc__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.magazin-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
}

.magazin-toc__list a {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--surface);
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.magazin-toc__list a:hover {
  border-color: rgba(30, 184, 184, 0.45);
  background: rgba(30, 184, 184, 0.08);
  color: var(--teal-hover);
}

.magazin-doc-shell {
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.06);
}

.magazin-admin-detail .magazin-h3[id] {
  scroll-margin-top: 5.5rem;
}

.magazin-admin-detail .magazin-h3 {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.magazin-callout {
  max-width: 48rem;
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius);
  border: 1px solid rgba(30, 184, 184, 0.28);
  background: linear-gradient(
    135deg,
    rgba(30, 184, 184, 0.09) 0%,
    rgba(30, 58, 95, 0.04) 100%
  );
  box-shadow: var(--shadow-sm);
}

.magazin-callout__title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  border-bottom: 0;
  padding: 0;
}

.magazin-callout__list {
  margin: 0;
}

.section--magazin-compare {
  background: var(--surface);
}

.table-wrap--magazin {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.07);
  overflow: hidden;
}

.section--magazin-faq {
  background: linear-gradient(180deg, var(--surface-muted) 0%, var(--surface) 100%);
}

.magazin-faq .faq-item {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.magazin-faq .faq-item:hover {
  border-color: rgba(30, 184, 184, 0.22);
  box-shadow: 0 4px 18px rgba(30, 58, 95, 0.06);
}

.magazin-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 0.5rem;
}

.page-hero--compact .page-hero__lead {
  margin-inline: auto;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--teal);
}

.stat-strip {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, var(--blue-tint) 0%, var(--surface) 45%, var(--blue-tint-strong) 100%);
}

.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 1.75rem 0;
}

@media (max-width: 820px) {
  .stat-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-strip__grid strong {
  font-family: var(--display);
  display: block;
  font-size: 1.125rem;
  color: var(--teal);
}

.stat-strip__grid span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.card-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.card-link {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(155deg, var(--surface) 0%, var(--surface-muted) 100%);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.card-link:hover {
  border-color: rgba(30, 184, 184, 0.45);
  transform: translateY(-3px);
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.card-link--accent {
  border-color: rgba(30, 184, 184, 0.35);
  background: linear-gradient(155deg, rgba(30, 184, 184, 0.1), var(--surface));
}

.card-link__icon {
  font-size: 1.35rem;
  opacity: 0.85;
}

.card-link h3 {
  font-family: var(--display);
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}

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

.card-link__more {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 0.25rem;
}

.split--balanced {
  align-items: stretch;
}

.split--contact {
  grid-template-columns: 1fr minmax(260px, 320px);
}

@media (max-width: 820px) {
  .split--contact {
    grid-template-columns: 1fr;
  }
}

.aside-highlight {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 184, 184, 0.35);
  background: linear-gradient(165deg, rgba(30, 184, 184, 0.08), var(--surface));
  box-shadow: var(--shadow-sm);
}

.aside-highlight h3 {
  font-family: var(--display);
  margin-top: 0;
  color: var(--navy);
}

.aside-highlight--sticky {
  position: sticky;
  top: 6rem;
}

.aside-muted {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(10, 22, 40, 0.035);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 3.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: var(--teal-muted);
  color: var(--teal);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.timeline span {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.timeline--dense li {
  padding-left: 2.75rem;
}

.card--lift:hover {
  transform: translateY(-4px);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--surface-muted);
  font-family: var(--display);
  font-weight: 600;
  color: var(--navy);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td:nth-child(3) {
  color: var(--teal);
  font-weight: 600;
}

.code-panel--tall {
  min-height: 280px;
}

.kbd {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--teal);
}

.faq-grid {
  display: grid;
  gap: 0.65rem;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--navy);
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-tabs__btn {
  border: 1px solid var(--border);
  background: var(--surface-muted);
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.filter-tabs__btn:hover {
  border-color: rgba(30, 184, 184, 0.45);
  color: var(--text);
}

.filter-tabs__btn.is-active {
  border-color: var(--teal);
  color: var(--navy);
  background: var(--teal);
}

.integration-block.is-hidden {
  display: none;
}

.integration-block__title {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--navy);
}

.integration-block:first-of-type .integration-block__title {
  margin-top: 0;
}

.module-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.module-matrix__cell {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.module-matrix__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-right: 0.35rem;
}

.stack-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .stack-cards {
    grid-template-columns: 1fr;
  }
}

.stack-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-muted) 100%);
  box-shadow: var(--shadow-sm);
}

.stack-card h3 {
  font-family: var(--display);
  margin-top: 0;
  color: var(--navy);
}

.mini-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.mini-list li {
  margin-bottom: 0.35rem;
}

.alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.alert--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
}

.alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

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

.field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.field input,
.field textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(30, 184, 184, 0.55);
  box-shadow: 0 0 0 3px rgba(30, 184, 184, 0.15);
}

.password-meter {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.password-meter[aria-hidden='true'] {
  display: none;
}

.password-meter__track {
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.password-meter__fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  transition: width 0.22s ease, background-color 0.22s ease;
  background-color: var(--border);
}

.password-meter--t1 .password-meter__fill {
  background-color: #c0392b;
}

.password-meter--t2 .password-meter__fill {
  background-color: #d97706;
}

.password-meter--t3 .password-meter__fill {
  background-color: #ca8a04;
}

.password-meter--t4 .password-meter__fill {
  background-color: #16a34a;
}

.password-meter--t5 .password-meter__fill {
  background-color: #047857;
}

.password-meter__label {
  margin: 0;
  font-weight: 500;
  line-height: 1.35;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.small-muted {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.prose-muted {
  color: var(--text-muted);
}

/* Flash & cont licență */
.site-flash {
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}

.site-flash--success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.site-flash--error {
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
}

.site-flash--info {
  background: rgba(30, 184, 184, 0.14);
  color: #0f172a;
  border-bottom-color: rgba(30, 184, 184, 0.25);
}

.site-flash__inner {
  padding: 0.75rem 0;
}

.license-price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0;
}

.license-table-wrap {
  overflow-x: auto;
}

.license-status {
  font-weight: 600;
  text-transform: none;
}

.license-status--badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.license-status--paid {
  color: #14532d;
  background: rgba(34, 197, 94, 0.18);
}

.license-status--pending {
  color: #9a3412;
  background: rgba(251, 146, 60, 0.22);
}

.license-status--cancelled,
.license-status--canceled {
  color: var(--text-muted);
  background: var(--surface-muted);
}

.license-key {
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
}

/* Pagina Cont — sumar firmă + carduri licențe */
.page-hero--account {
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.account-summary {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
  max-width: 920px;
}

@media (min-width: 768px) {
  .account-summary {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
    gap: 2rem;
  }

  .account-summary__actions {
    padding: 1.35rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 12px 36px rgba(18, 52, 77, 0.06);
  }
}

.account-summary__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.account-summary__title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}

.account-summary__subtitle {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.section-pad--account-profile {
  padding-top: 0;
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.account-profile-card {
  max-width: 560px;
  margin-inline: auto;
}

.account-profile-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.account-profile-card__lead {
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

.account-profile-card .contact-form {
  margin-top: 0;
}

.account-summary__meta {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.account-summary__meta-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.65rem 1rem;
  align-items: baseline;
  font-size: 0.9375rem;
}

@media (max-width: 520px) {
  .account-summary__meta-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.account-summary__meta-row dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.account-summary__meta-row dd {
  margin: 0;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}

.account-summary__meta-row dd a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.account-summary__meta-row dd a:hover {
  text-decoration: underline;
}

.account-summary__pill {
  display: inline-block;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  background: var(--surface-muted);
  color: var(--navy);
}

.account-summary__actions-label {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-summary__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.account-summary__btn + .account-summary__btn {
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .account-summary__actions {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }

  .account-summary__actions-label {
    margin-top: 0;
  }
}

.section-pad--account-licenses {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.account-licenses-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.account-licenses-head__title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
}

.account-licenses-head__lead {
  margin: 0;
  max-width: 42rem;
}

.license-card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

.license-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(1.1rem, 2.5vw, 1.35rem);
  box-shadow: 0 10px 40px rgba(18, 52, 77, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.license-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.license-card__plan-wrap {
  min-width: 0;
}

.license-card__plan {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.25;
}

.license-card__slug {
  margin: 0.35rem 0 0;
}

.license-card__stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.license-card__stats dt {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.license-card__stats dd {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.license-card__stats > div:first-child dd {
  color: var(--teal);
}

.license-card__op-note {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.license-card__ref {
  font-size: 0.8125rem;
}

.license-card__key-block {
  padding-top: 0.85rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.license-card__key-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.license-card__key-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.license-card__key {
  flex: 1 1 12rem;
  min-width: 0;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
}

.license-card__copy {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.license-card__copy:disabled {
  opacity: 0.75;
}

.account-empty-licenses {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: var(--radius);
  border: 1px dashed rgba(30, 184, 184, 0.35);
  background: linear-gradient(165deg, var(--surface) 0%, var(--blue-tint) 100%);
}

.account-empty-licenses__title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.account-empty-licenses__text {
  margin: 0 0 1.25rem;
}

.account-empty-licenses__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.account-licenses-footnote {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

/* Pagina preturi — grid abonamente */
.page-hero--pricing .page-hero__lead {
  max-width: 46rem;
}

.section-pad--pricing {
  padding-top: clamp(1rem, 2.75vw, 1.75rem);
}

.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;
}

.pricing-billing-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pricing-billing-bar__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.pricing-billing-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  gap: 0.15rem;
}

.pricing-billing-toggle__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  color: var(--text-muted);
  background: transparent;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.pricing-billing-toggle__btn:hover {
  color: var(--navy);
}

.pricing-billing-toggle__btn.is-active {
  background: var(--surface);
  color: var(--navy);
  box-shadow: 0 1px 6px rgba(18, 52, 77, 0.08);
}

.pricing-billing-toggle__btn:focus-visible {
  outline: 2px solid rgba(30, 184, 184, 0.55);
  outline-offset: 2px;
}

.pricing-billing-toggle__save {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0.05rem 0.45rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #14532d;
  background: rgba(34, 197, 94, 0.22);
}

.pricing-panel {
  outline: none;
}

.pricing-card__save-pill {
  margin: 0 0 0.45rem;
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  color: #14532d;
  background: rgba(34, 197, 94, 0.2);
}

.pricing-enterprise-row {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pricing-enterprise-trigger {
  width: 100%;
  max-width: min(36rem, 100%);
  justify-content: center;
  text-align: center;
  font-weight: 700;
}

.pricing-enterprise-dialog {
  border: none;
  padding: 0;
  margin: auto;
  background: transparent;
  max-width: min(36rem, calc(100vw - 2rem));
}

.pricing-enterprise-dialog::backdrop {
  background: rgba(18, 52, 77, 0.52);
}

.pricing-enterprise-dialog__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(18, 52, 77, 0.18);
}

.pricing-enterprise-dialog__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.pricing-enterprise-dialog__close:hover {
  background: var(--surface-muted);
  color: var(--navy);
}

.pricing-enterprise-dialog__close:focus-visible {
  outline: 2px solid rgba(30, 184, 184, 0.55);
  outline-offset: 2px;
}

.pricing-enterprise-dialog__scroll {
  position: relative;
  max-height: min(62vh, 26rem);
  overflow-y: auto;
  padding: clamp(1.25rem, 3vw, 1.5rem);
  padding-right: clamp(2.5rem, 5vw, 2.75rem);
}

.pricing-enterprise-dialog__title {
  margin: 0 0 0.5rem;
  padding-right: 2rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.03em;
  color: var(--navy);
  line-height: 1.25;
}

.pricing-enterprise-dialog__lead {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.pricing-enterprise-dialog__price-label {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.pricing-enterprise-dialog__footer {
  padding: 0 clamp(1.25rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.5rem);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.pricing-enterprise-dialog__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pricing-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(1.25rem, 3vw, 1.5rem);
  box-shadow: 0 10px 38px rgba(18, 52, 77, 0.06);
}

.pricing-card--highlight {
  border-color: rgba(30, 184, 184, 0.45);
  box-shadow:
    0 14px 44px rgba(18, 52, 77, 0.08),
    0 0 0 1px rgba(30, 184, 184, 0.12);
  position: relative;
}

.pricing-card--highlight::before {
  content: 'Popular';
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.pricing-card__head {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card--highlight .pricing-card__head {
  padding-right: 5rem;
}

.pricing-card__name {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.pricing-card__price {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2rem);
  color: var(--teal);
  line-height: 1.1;
}

.pricing-card__price--custom {
  font-size: 1.35rem;
  color: var(--navy);
}

.pricing-card__interval {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-card__tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.pricing-card__body {
  flex: 1;
  padding: 1rem 0;
  font-size: 0.875rem;
}

.pricing-card__intro {
  margin: 0 0 0.65rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.pricing-card__section-label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.pricing-card__section-label--adv {
  margin-top: 1rem;
}

.pricing-card__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pricing-card__list li + li {
  margin-top: 0.35rem;
}

.pricing-card__list--adv {
  color: var(--text);
}

.pricing-card__footer {
  padding-top: 0.25rem;
}

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

.pricing-card__cta-form {
  margin: 0;
  width: 100%;
}

.pricing-card__cta-form .pricing-card__cta {
  width: 100%;
}

.pricing-card__cta-form--after {
  margin-top: 0.5rem;
}

.pricing-card__guest-hint {
  margin: 0 0 0.6rem;
  text-align: center;
  line-height: 1.35;
}

.pricing-pay-fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.pricing-pay-fieldset__legend {
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.pricing-pay-fieldset--checkout .pricing-pay-fieldset__legend {
  margin-bottom: 0.65rem;
}

.pricing-pay-option {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-muted);
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.pricing-pay-option:focus-within {
  border-color: rgba(30, 184, 184, 0.4);
}

.pricing-pay-option:last-child {
  margin-bottom: 0;
}

.pricing-pay-option input:checked + .pricing-pay-option__body .pricing-pay-option__label {
  color: var(--teal);
}

.pricing-pay-option input[type='radio'] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--teal);
}

.pricing-pay-option__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.pricing-pay-option__label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
}

.pricing-pay-option__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.checkout-pay-form {
  margin-top: 1.25rem;
}

.checkout-pay-form .pricing-pay-fieldset {
  margin-bottom: 1rem;
}

.checkout-pay-form__submit {
  width: 100%;
  justify-content: center;
}

.pricing-card__cta-fallback {
  margin: 0;
  text-align: center;
}

.pricing-card__cta-row {
  display: grid;
  gap: 0.5rem;
}

.pricing-footnote {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  line-height: 1.5;
}

.checkout-summary__plan-title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.25;
}

.checkout-summary__price .pricing-card__interval {
  font-size: 1rem;
  vertical-align: baseline;
}

.bank-op-details {
  margin: 0;
}

.bank-op-details__row {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.bank-op-details__row:last-child {
  margin-bottom: 0;
}

.bank-op-details__row dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.bank-op-details__row dd {
  margin: 0;
}

.bank-op-ref {
  font-size: 0.9375rem;
  word-break: break-word;
}

.bank-op-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.bank-op-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.nav-logout {
  display: inline;
  margin: 0;
  padding: 0;
}

.nav-logout__btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-muted);
}

.nav-logout__btn:hover {
  color: var(--teal);
}

.nav-link--accent {
  color: var(--teal);
  font-weight: 600;
}

.register-anaf-status {
  margin: -0.35rem 0 0.75rem;
  min-height: 1.25rem;
}

.register-anaf-status--ok {
  color: var(--teal);
}

.register-anaf-status--err {
  color: #b83232;
}

input.register-cui--loading {
  opacity: 0.75;
}

.register-cui-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.register-cui-row input {
  flex: 1 1 12rem;
  min-width: 0;
}

.register-cui-row__btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Pagina Platformă — grid pluginuri (aliniat la panoul Admin) */
.section--platform-plugins {
  border-top: 1px solid var(--border);
}

.platform-plugin-category {
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

.platform-plugin-category:last-of-type {
  margin-bottom: 0;
}

.platform-plugin-category__head {
  max-width: 46rem;
  margin-bottom: 1.35rem;
}

.platform-plugin-category__title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.45rem;
}

.platform-plugin-category__intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.platform-plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.platform-plugin-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem 1.25rem 1.15rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  overflow: hidden;
}

.platform-plugin-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--plugin-accent, var(--teal));
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.platform-plugin-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(30, 184, 184, 0.22);
  transform: translateY(-2px);
}

.platform-plugin-card:hover::before {
  opacity: 1;
}

.platform-plugin-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.75rem;
}

.platform-plugin-card__logo-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.platform-plugin-card__logo {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 2.5rem;
  object-fit: contain;
  object-position: left center;
}

.platform-plugin-card__name {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.platform-plugin-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.platform-plugin-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding-top: 0.15rem;
}

.platform-plugin-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
}

/* Pagina Funcționalități — încă puțin mai dens decât restul paginilor */
.page-functionalitati {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-functionalitati > section {
  padding: clamp(0.85rem, 2vw, 1.45rem) 0;
}

.page-functionalitati .section-pad {
  padding: clamp(0.85rem, 2vw, 1.45rem) 0;
}

.page-functionalitati .page-hero {
  padding: clamp(1rem, 2.5vw, 1.6rem) 0 clamp(0.85rem, 2vw, 1.35rem);
}

.page-functionalitati .page-hero__title {
  margin-bottom: 0.45rem;
}

.page-functionalitati .breadcrumb {
  margin-bottom: 0.25rem;
}

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

.page-functionalitati .section-head h2 {
  margin-bottom: 0.4rem;
}

.page-functionalitati .section-kicker {
  margin-bottom: 0.35rem;
}

.page-functionalitati .timeline {
  gap: 0.5rem;
}

.page-functionalitati .timeline li {
  padding: 0.8rem 0.85rem 0.8rem 2.65rem;
}

.page-functionalitati .timeline li::before {
  left: 0.75rem;
  top: 0.75rem;
}

.page-functionalitati .cards-3 {
  gap: 0.65rem;
}

.page-functionalitati .card {
  padding: 0.95rem 1rem;
}

.page-functionalitati .card-icon {
  margin-bottom: 0.5rem;
}

.page-functionalitati .platform-plugin-category {
  margin-bottom: clamp(1rem, 2.25vw, 1.45rem);
}

.page-functionalitati .platform-plugin-category__head {
  margin-bottom: 0.75rem;
}

.page-functionalitati .platform-plugin-grid {
  gap: 0.65rem;
}

.page-functionalitati .platform-plugin-card {
  gap: 0.4rem;
  padding: 0.85rem 0.95rem;
}

.page-functionalitati .platform-plugin-card__top {
  min-height: 2.15rem;
}

.page-functionalitati .cta-band {
  margin: 0.5rem 0;
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.page-functionalitati .cta-band p {
  margin-bottom: 0.75rem;
}

/* Buton WhatsApp fix dreapta-jos (același număr ca în config) */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 4px 18px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(10, 22, 40, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.55),
    0 2px 10px rgba(10, 22, 40, 0.15);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(30, 184, 184, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }

  .whatsapp-float:hover {
    transform: none;
  }
}

/* Pagini legale (termeni, confidențialitate) */
.legal-doc {
  max-width: 48rem;
  margin-inline: auto;
}

.legal-operator {
  padding: 1.25rem 1.35rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.legal-operator__title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--navy);
}

.legal-operator__dl {
  margin: 0;
  display: grid;
  gap: 0.65rem 1rem;
}

.legal-operator__dl > div {
  display: grid;
  grid-template-columns: minmax(0, 10rem) 1fr;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.legal-operator__dl dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.legal-operator__dl dd {
  margin: 0;
  color: var(--text);
}

@media (max-width: 560px) {
  .legal-operator__dl > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

.legal-text h2 {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 2rem 0 0.65rem;
  color: var(--navy);
}

.legal-text h2:first-of-type {
  margin-top: 0;
}

.legal-text p,
.legal-text li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
}

.legal-text p {
  margin: 0 0 0.85rem;
}

.legal-text ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-text li {
  margin-bottom: 0.35rem;
}

.legal-text__see-also {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
}
