/* ── Design tokens ── */
:root {
  /* Glass palette */
  --glass-bg: rgba(110, 95, 175, 0.38);
  --glass-bg-dark: rgba(70, 55, 130, 0.45);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: blur(18px);
  --glass-blur-hero: blur(0px);

  /* Input */
  --input-border: rgba(255, 255, 255, 0.55);
  --input-text: #fff;
  --input-placeholder: rgba(255, 255, 255, 0.35);
  --input-bg: transparent;
  --input-focus: #00c8e8;

  /* Text */
  --text-primary: #fff;
  --text-heading: #fff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-label: rgba(255, 255, 255, 0.75);
  --text-ssm: rgba(255, 255, 255, 0.45);

  /* Accent */
  --accent: #00c2e0;
  --accent-btn-from: #00c2e0;
  --accent-btn-to: #0080c8;
  --accent-light: rgba(255, 255, 255, 0.85);

  /* Misc */
  --radius-card: 20px;
  --radius-input: 0px;
  --radius-btn: 9999px;
  --radius-emp: 12px;
  --shadow-card: 0 24px 80px rgba(20, 10, 60, 0.55);
  --transition-fast: .2s ease;
  --transition-med: .25s ease;
  --transition-dot: background .3s, width .3s;

  /* Employee card */
  --bg-card: rgba(60, 45, 120, 0.35);
  --border-card: rgba(255, 255, 255, 0.12);
  --text-remove: rgba(255, 200, 255, 0.8);
  --border-remove: rgba(255, 200, 255, 0.3);
  --border-add: rgba(255, 255, 255, 0.25);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --accent-darker: rgba(255, 255, 255, 0.1);
  --text-secondary: rgba(255, 255, 255, 0.75);
}

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
  position: relative;
  overflow-y: auto;
}

/* Blurred background pseudo-element */
body::before {
  content: '';
  position: fixed;
  inset: -40px;
  background:
    linear-gradient(135deg, rgba(80, 50, 180, 0.72) 0%, rgba(40, 30, 140, 0.65) 50%, rgba(60, 80, 200, 0.60) 100%),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80') center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.08);
  z-index: -1;
}

/* ── Main layout card ── */
.card {
  display: flex;
  width: 960px;
  max-width: 98vw;
  min-height: 620px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* ── Left panel – hero ── */
.hero {
  flex: 0 0 300px;
  background:
    linear-gradient(170deg, rgba(60, 40, 160, 0.55) 0%, rgba(30, 20, 100, 0.75) 100%),
    url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?w=800&q=80') center / cover no-repeat;
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 6px 0;
  border: 2px solid #fff;
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: -6px;
  border-radius: 2px;
  gap: 0;
  flex-shrink: 0;
}

.logo-badge span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0;
}

.logo-text {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Logo icon – removed (replaced by .logo-badge) */

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-feature {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  opacity: .9;
}

/* step dots */
.step-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition-dot);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}

/* ── Right panel – form ── */
.form-panel {
  flex: 1;
  background: transparent;
  padding: 36px 40px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Custom scrollbar */
.form-panel::-webkit-scrollbar {
  width: 4px;
}

.form-panel::-webkit-scrollbar-track {
  background: transparent;
}

.form-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 4px;
}

.form-header {
  margin-bottom: 6px;
  text-align: center;
}

.form-title {
  font-size: 1.55rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-heading);
}

.form-sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-sub a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.step-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c542;
  margin: 18px 0 12px;
  text-align: center;
}

/* ── Steps ── */
.step {
  display: none;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.step.active {
  display: flex;
}

/* ── Field row ── */
.row {
  display: flex;
  gap: 20px;
}

.row .field {
  flex: 1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: .76rem;
  color: var(--text-label);
  font-weight: 600;
  letter-spacing: .4px;
}

/* Underline-only inputs */
.field input,
.field select,
.field textarea {
  background: var(--input-bg);
  border: none;
  border-bottom: 1.5px solid var(--input-border);
  border-radius: 0;
  padding: 8px 2px;
  color: var(--input-text);
  font-size: .88rem;
  outline: none;
  transition: border-color var(--transition-med);
  font-family: inherit;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--input-placeholder);
  font-size: .60rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--input-focus);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: var(--input-text);
  transition: background-color 9999s ease-in-out 0s;
  background-color: transparent !important;
}

.field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.6)' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
}

.field select option {
  background: #2d2060;
  color: #fff;
}

/* Textarea */
.field textarea {
  resize: vertical;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  padding: 8px 10px;
}

.field textarea:focus {
  border-color: var(--input-focus);
}

/* password toggle */
.pw-wrap {
  position: relative;
}

.pw-wrap input {
  padding-right: 34px;
}

.pw-eye {
  position: absolute;
  right: 4px;
  top: 50%;
  translate: 0 -50%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-ssm);
  font-size: 1rem;
}

/* Checkbox rows (GDPR etc) */
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  color: var(--text-muted);
}

.check-row input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #f5c542;
  flex-shrink: 0;
  width: auto;
}

.check-row a {
  color: rgba(255, 255, 255, .85);
}

/* ── Checkbox grids ── */
.chk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  font-size: .82rem;
  color: var(--text-label);
}

.chk-lbl {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  line-height: 1.4;
}

.chk-lbl input[type="checkbox"],
.chk-lbl input[type="radio"] {
  margin-top: 2px;
  accent-color: #f5c542;
  flex-shrink: 0;
  width: auto;
}

/* ── SSM instructaj field header ── */
.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.field-label-row>label {
  margin: 0;
}

.ssm-only-hire {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  color: var(--text-ssm);
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}

.ssm-only-hire input[type="checkbox"] {
  accent-color: #f5c542;
}

/* ── Employee cards ── */
.employee-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.employee-card {
  background: var(--bg-card);
  border-radius: var(--radius-emp);
  border: 1px solid var(--border-card);
  padding: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.employee-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.employee-card-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
}

.btn-remove {
  background: none;
  border: 1px solid var(--border-remove);
  color: var(--text-remove);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .75rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-remove:hover {
  background: rgba(255, 255, 255, .08);
}

.btn-add-employee {
  background: none;
  border: 1.5px dashed var(--border-add);
  color: rgba(255, 255, 255, .7);
  border-radius: var(--radius-emp);
  padding: 10px;
  font-size: .82rem;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: background var(--transition-fast);
}

.btn-add-employee:hover {
  background: var(--bg-card-hover);
}

/* ── Buttons ── */
.btn-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  justify-content: center;
}

.btn-row--last {
  justify-content: space-between;
}

.btn-row--right {
  justify-content: flex-end;
}

.btn {
  flex: 0 0 auto;
  padding: 8px 24px;
  border-radius: var(--radius-btn);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast), transform .1s;
}

.btn:active {
  transform: scale(.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-btn-from), var(--accent-btn-to));
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 180, 220, 0.35);
}

.btn-primary:hover {
  opacity: .9;
}

.btn-secondary {
  background: var(--accent-darker);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  opacity: .8;
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent-btn-from), var(--accent-btn-to));
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 180, 220, 0.35);
}

.btn-submit:hover {
  opacity: .9;
}

/* ── Divider ── */
.divider {
  text-align: center;
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  margin: 14px 0 10px;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* ── Social buttons ── */
.social-row {
  display: flex;
  gap: 12px;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-btn);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-social:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .4);
}

/* ── Success screen ── */
#success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 18px;
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--accent-btn-from), var(--accent-btn-to));
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 180, 220, 0.4);
}

.success-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.success-sub {
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

/* ── Spinner ── */
.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Summary box ── */
#summary-box,
[id="summary-box"] {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
}

/* ── Responsive ── */
@media (width <=680px) {
  .hero {
    display: none;
  }

  .card {
    min-height: 100vh;
    border-radius: 0;
  }

  .form-panel {
    padding: 28px 20px 24px;
  }

  .row {
    flex-direction: column;
  }
}

/* ── Summary wrapper ── */
.summary-wrap {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
}


/* ----------------------------------------
   Landing page styles (index.html)
   ---------------------------------------- */
/* ── Landing page specific ── */
:root {
  --lp-accent: #00c2e0;
  --lp-gold: #f5c542;
  --lp-dark: rgba(20, 15, 60, 0.85);
  --lp-glass: rgba(100, 85, 165, 0.32);
}

::selection {
  background: var(--lp-gold);
  color: #000;
}

::-moz-selection {
  background: var(--lp-gold);
  color: #000;
}

html,
body.landing {
  height: 100%;
  overflow: hidden;
}

body.landing {
  display: block;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background: #0f0a2e;
  color: #fff;
}

/* ── Background fixed ── */
body.landing::before {
  content: '';
  position: fixed;
  inset: -40px;
  background:
    linear-gradient(135deg, rgba(80, 50, 180, 0.72) 0%, rgba(40, 30, 140, 0.65) 50%, rgba(60, 80, 200, 0.60) 100%),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1600&q=80') center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.08);
  z-index: 0;
}

/* ── Fullscreen menu overlay ── */
.lp-menu-overlay {
  position: fixed;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity .35s ease, transform .4s cubic-bezier(.4, 0, .2, 1);
}

.lp-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.lp-menu-close {
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 3.6rem;
  font-weight: 100;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .25s, transform .3s cubic-bezier(.4, 0, .2, 1), opacity .25s;
  padding: 4px 8px;
}

.lp-menu-close:hover {
  color: var(--lp-gold);
  transform: rotate(90deg) scale(1.15);
  opacity: 1;
}

.lp-menu-logo {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.lp-menu-logo a {
  display: inline-block;
}

.lp-menu-logo img {
  max-height: 38px;
  height: auto;
  width: auto;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
  display: block;
}

.lp-menu-logo a:hover img {
  opacity: 1;
}

.lp-menu-login {
  position: absolute;
  top: 28px;
  left: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lp-menu-login svg {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lp-menu-login:hover {
  color: rgba(255, 255, 255, 0.7);
}

.lp-menu-login:hover svg {
  opacity: 1;
}

@media (max-width: 700px) {
  .lp-menu-login {
    top: auto;
    bottom: 116px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    text-align: center;
    width: max-content;
    max-width: calc(100% - 32px);
    z-index: 2;
  }
}

.lp-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.lp-menu-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color .3s ease, letter-spacing .3s ease, opacity .3s ease;
  display: block;
  position: relative;
}

.lp-menu-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--lp-gold);
  transform: translateX(-50%);
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
}

.lp-menu-nav a:hover {
  color: #fff;
  letter-spacing: 4px;
  opacity: 1;
}

.lp-menu-nav a:hover::after {
  width: 60%;
}

.lp-menu-firm-info {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.lp-menu-firm-phone {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-decoration: none;
  transition: color .25s;
}

.lp-menu-firm-phone:hover {
  color: #fff;
}

/* ── Top navbar ── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
}

.lp-nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lp-nav-logo img {
  max-height: 38px;
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.lp-nav-logo:hover img {
  opacity: 1;
}

.lp-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  position: absolute;
  right: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.lp-menu-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  width: 30px;
}

.lp-menu-btn-lines span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: transform 0.3s ease, width 0.3s ease, background 0.3s ease;
}

.lp-menu-btn-lines span:nth-child(1) {
  width: 30px;
}

.lp-menu-btn-lines span:nth-child(2) {
  width: 20px;
}

.lp-menu-btn-lines span:nth-child(3) {
  width: 12px;
}

.lp-menu-btn:hover .lp-menu-btn-lines span {
  background: var(--lp-gold);
  width: 30px;
}

.lp-menu-btn:hover .lp-menu-btn-lines span:nth-child(1) {
  transform: translateY(-2px);
}

.lp-menu-btn:hover .lp-menu-btn-lines span:nth-child(3) {
  transform: translateY(2px);
}

.lp-menu-btn-label {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s ease;
}

.lp-menu-btn:hover .lp-menu-btn-label {
  color: var(--lp-gold);
}

@keyframes lp-cursor-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.lp-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--lp-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, opacity .3s ease, border-width .25s ease;
  opacity: 0;
}

.lp-cursor.visible {
  opacity: 0.75;
}

.lp-cursor.hover {
  width: 46px;
  height: 46px;
  border-width: 3px;
  border-color: transparent;
  border-top-color: var(--lp-gold);
  border-right-color: rgba(245, 197, 66, 0.3);
  opacity: 0.9;
  animation: lp-cursor-spin 0.8s linear infinite;
}

/* ── Side dot navigation ── */
.lp-side-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.lp-side-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all .3s ease;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.lp-side-dot.active {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle,
      var(--lp-gold) 0% 30%,
      transparent 30% 62%,
      var(--lp-gold) 62% 100%);
}

.lp-side-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.4);
}

/* ── Section counter ── */
.lp-counter {
  position: fixed;
  right: 48px;
  bottom: 32px;
  z-index: 100;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
}

.lp-counter span {
  color: var(--lp-gold);
  font-size: .9rem;
}

/* ── Scroll container (handles snap) ── */
.lp-scroll-container {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lp-scroll-container::-webkit-scrollbar {
  display: none;
}

/* ── Sections ── */
.lp-section {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Two-column inner layout ── */
.lp-section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
  max-width: 1340px;
  padding: 0 80px;
  box-sizing: border-box;
}

.lp-section-inner.reverse {
  flex-direction: row-reverse;
}

/* ── Hero entrance/exit animations (lateral) ── */
@keyframes lp-in-left {
  from {
    opacity: 0;
    transform: translateX(-72px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes lp-out-left {
  from {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateX(-56px);
    filter: blur(5px);
  }
}

@keyframes lp-in-right {
  from {
    opacity: 0;
    transform: translateX(72px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes lp-out-right {
  from {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateX(56px);
    filter: blur(5px);
  }
}

.lp-section .lp-visual,
.lp-section .lp-content,
.lp-section .lp-contact-map-col,
.lp-section .lp-contact-wrap {
  opacity: 0;
}

/* Intrare: stânga (imagine / hartă) */
.lp-section.in-view .lp-visual {
  animation: lp-in-left .35s cubic-bezier(.2, .8, .4, 1) 0s forwards;
}

.lp-section.in-view .lp-contact-map-col {
  animation: lp-in-left .35s cubic-bezier(.2, .8, .4, 1) 0s forwards;
}

/* Intrare: dreapta (text / formular) */
.lp-section.in-view .lp-content {
  animation: lp-in-right .35s cubic-bezier(.2, .8, .4, 1) .3s forwards;
}

.lp-section.in-view .lp-contact-wrap {
  animation: lp-in-right .35s cubic-bezier(.2, .8, .4, 1) .3s forwards;
}

/* Ieșire: stânga */
.lp-section.out-view .lp-visual,
.lp-section.out-view .lp-contact-map-col {
  animation: lp-out-left .22s cubic-bezier(.4, 0, .8, .2) forwards;
}

/* Ieșire: dreapta */
.lp-section.out-view .lp-content,
.lp-section.out-view .lp-contact-wrap {
  animation: lp-out-right .22s cubic-bezier(.4, 0, .8, .2) forwards;
}

/* ── Visual card ── */
.lp-visual {
  flex: 0 0 420px;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(10, 5, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.lp-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}

.lp-visual:hover .lp-visual-bg {
  transform: scale(1.05);
}

.lp-visual-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  padding: 8px 0;
  border: 2.5px solid #fff;
  outline: 3px solid rgba(255, 255, 255, 0.3);
  outline-offset: -7px;
  border-radius: 3px;
  flex-shrink: 0;
}

.lp-badge span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.lp-badge-text {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
}

.lp-visual-number {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  user-select: none;
}

.lp-visual-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Visual card backgrounds ── */
.section-fiscal .lp-visual-bg {
  background-image:
    linear-gradient(170deg, rgba(60, 40, 160, 0.40) 0%, rgba(20, 10, 80, 0.72) 100%),
    url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=900&q=80');
}

.section-ssm .lp-visual-bg {
  background-image:
    linear-gradient(170deg, rgba(9, 30, 84, 0.45) 0%, rgba(4, 12, 38, 0.82) 100%),
    radial-gradient(circle at 22% 18%, rgba(0, 200, 232, 0.30) 0%, rgba(0, 200, 232, 0) 26%),
    radial-gradient(circle at 78% 22%, rgba(69, 137, 255, 0.34) 0%, rgba(69, 137, 255, 0) 28%),
    url('../assets/s02.png');
  background-position: center center, center center, center center, center;
}

.section-webdesign .lp-visual-bg {
  background-image: url('../assets/webdesign.png');
  background-position: 90% center;
}

.section-plotter .lp-visual-bg {
  background-image: url('../assets/plotter.jpg');
  background-position: 80% center;
}

.section-service .lp-visual-bg {
  background-image: url('https://images.unsplash.com/photo-1743836798811-6208a08233c9?w=900&q=80');
}

.section-devices .lp-visual-bg {
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=900&q=80');
}

.section-contact {
  background-image:
    linear-gradient(160deg, rgba(10, 20, 60, 0.82) 0%, rgba(5, 10, 40, 0.92) 100%),
    url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1400&q=80');
  background-size: cover;
  background-position: center;
}

/* ── Contact two-column layout ── */
.lp-contact-outer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1340px;
  padding: 0 80px;
  box-sizing: border-box;
}

.lp-contact-columns {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.lp-firm-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.lp-firm-footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-firm-footer-col1 {
  text-align: right;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-firm-footer-col2 {
  text-align: left;
  padding-left: 24px;
}

.lp-firm-footer-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lp-firm-footer-col1 .lp-firm-footer-item {
  justify-content: flex-end;
}

.lp-firm-footer-col2 .lp-firm-footer-item {
  justify-content: flex-start;
}

.lp-firm-footer strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.lp-firm-footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .2s;
}

.lp-firm-footer a:hover {
  color: var(--lp-gold);
}

.lp-contact-map-col {
  flex: 1;
  height: 520px;
  border-radius: 16px;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
}

.lp-contact-map-col iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(1);
  border-radius: 16px;
}

.lp-streetview-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  background: linear-gradient(135deg, #f5c542, #e0a020);
  color: #1a1000;
  box-shadow: 0 6px 24px rgba(245, 197, 66, 0.3);
  border: none;
}

.lp-contact-map-col:hover .lp-streetview-btn {
  opacity: 1;
  pointer-events: auto;
}

.lp-streetview-btn:hover {
  opacity: .85;
}

.lp-contact-wrap {
  flex: 1;
  min-width: 0;
}

.lp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.lp-contact-form-row {
  display: flex;
  gap: 24px;
}

.lp-contact-form-row input {
  flex: 1;
  min-width: 0;
}

.lp-contact-form input,
.lp-contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 8px 2px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}

.lp-contact-form input::placeholder,
.lp-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: .60rem;
}

.lp-contact-form input:focus,
.lp-contact-form textarea:focus {
  border-bottom-color: #00c8e8;
}

.lp-contact-form input:-webkit-autofill,
.lp-contact-form input:-webkit-autofill:hover,
.lp-contact-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
  background-color: transparent !important;
}

.lp-contact-form textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 10px;
}

.lp-contact-form textarea:focus {
  border-color: #00c8e8;
}

.lp-contact-form .lp-cta-gold {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* ── SSM Ofertă Popup ── */
.lp-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lp-popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lp-popup-card {
  display: flex;
  width: 960px;
  max-width: 100%;
  min-height: 520px;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(20, 10, 60, 0.55);
  background: rgba(80, 65, 140, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.35s cubic-bezier(.2, .8, .4, 1);
}

.lp-popup-overlay.open .lp-popup-card {
  transform: translateY(0);
}

.lp-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 2.2rem;
  font-weight: 100;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color 0.25s, transform 0.3s cubic-bezier(.4, 0, .2, 1);
  padding: 0 6px;
}

.lp-popup-close:hover {
  color: var(--lp-gold);
  transform: rotate(90deg) scale(1.15);
}

.lp-popup-hero {
  flex: 0 0 280px;
  background:
    linear-gradient(170deg, rgba(60, 40, 160, 0.55) 0%, rgba(30, 20, 100, 0.75) 100%),
    url('https://images.unsplash.com/photo-1504813184591-01572f98c85f?w=800&q=80') center / cover no-repeat;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
}

.lp-popup-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lp-popup-hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 6px 0;
  border: 2px solid #fff;
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: -6px;
  border-radius: 2px;
  flex-shrink: 0;
}

.lp-popup-hero-badge span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.lp-popup-hero-label {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
}

.lp-popup-hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-popup-hero-feature {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.lp-popup-hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.9;
  line-height: 1.4;
}

/* ── Service popup hero background override ── */
.lp-popup-hero--service {
  background:
    linear-gradient(170deg, rgba(30, 60, 140, 0.60) 0%, rgba(10, 20, 80, 0.80) 100%),
    url('https://images.unsplash.com/photo-1743836798811-6208a08233c9?w=800&q=80') center / cover no-repeat;
}

.lp-popup-hero--automation {
  background:
    linear-gradient(170deg, rgba(8, 40, 102, 0.68) 0%, rgba(4, 18, 56, 0.88) 100%),
    radial-gradient(circle at 22% 18%, rgba(0, 200, 232, 0.22) 0%, rgba(0, 200, 232, 0) 24%),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=900&q=80') center / cover no-repeat;
}

/* ── Coming Soon panel content ── */
.service-soon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 16px;
  padding: 12px 0;
}

.service-soon-icon {
  color: var(--lp-gold);
  opacity: 0.85;
}

/* ── Progress bar suggester ── */
.service-soon-progress {
  width: 100%;
  max-width: 420px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  overflow: hidden;
}

.service-soon-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, var(--lp-gold), rgba(255, 255, 255, 0.8), var(--lp-gold), transparent);
  background-size: 200% 100%;
  animation: progress-fill 3.5s cubic-bezier(.4, 0, .2, 1) infinite, shimmer 1.8s linear infinite;
}

@keyframes progress-fill {
  0% {
    width: 0%;
    opacity: 1;
  }

  75% {
    width: 100%;
    opacity: 1;
  }

  90% {
    width: 100%;
    opacity: 0;
  }

  100% {
    width: 0%;
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}


.service-soon-orbits {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
}

.orbit-1 {
  border-top-color: var(--lp-gold);
  border-right-color: rgba(245, 197, 66, 0.25);
  animation: orbit-spin 2.4s linear infinite;
}

.orbit-2 {
  inset: 14px;
  border-top-color: rgba(255, 255, 255, 0.55);
  border-left-color: rgba(255, 255, 255, 0.15);
  animation: orbit-spin 1.8s linear infinite reverse;
}

.orbit-3 {
  inset: 28px;
  border-bottom-color: var(--lp-gold);
  border-left-color: rgba(245, 197, 66, 0.2);
  animation: orbit-spin 3.2s linear infinite;
}

.orbit-core {
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background: var(--lp-gold);
  opacity: 0.85;
  animation: core-pulse 2s ease-in-out infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes core-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.5;
  }
}

.service-soon-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-gold);
  border: 1.5px solid var(--lp-gold);
  border-radius: 9999px;
  padding: 4px 18px;
  opacity: 0.9;
}

.service-soon-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.service-soon-sub {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 620px;
  margin: 0;
  text-align: center;
}

.service-soon-sub strong {
  color: rgba(255, 255, 255, 0.9);
}

.service-soon-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
  border-radius: 9999px;
  opacity: 0.6;
}

.service-soon-notify {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.service-soon-cta {
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  box-shadow: none;
  transition: background 2.25s, border-color 2.25s, transform 1s;
}

.service-soon-cta:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.service-soon-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.service-soon-footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color .2s;
}

.service-soon-footer a:hover {
  color: #fff;
  font-weight: 700;
}

.lp-popup-panel {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px 32px 20px;
  overflow-y: auto;
  min-height: 0;
  background: transparent;
}

.lp-popup-panel::-webkit-scrollbar {
  width: 4px;
}

.lp-popup-panel::-webkit-scrollbar-track {
  background: transparent;
}

.lp-popup-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 4px;
}

.lp-popup-form-header {
  text-align: center;
  margin-bottom: 4px;
}

.lp-popup-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
}

.lp-popup-form-sub {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  text-align: center;
}

.lp-popup-step-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--lp-gold);
  text-align: center;
  margin: 16px 0 12px;
}

.lp-popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.lp-popup-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.lp-popup-row .lp-popup-field {
  flex: 1;
  min-width: 0;
}

.lp-popup-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-popup-field label {
  font-size: .76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: .4px;
  text-align: center;
  display: block;
}

.lp-popup-field input:not([type="radio"]):not([type="checkbox"]),
.lp-popup-field select,
.lp-popup-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 8px 2px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: #fff;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
}

.lp-popup-field input:not([type="radio"]):not([type="checkbox"])::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: .72rem;
}

.lp-popup-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: .78rem;
}

.lp-popup-field input:not([type="radio"]):not([type="checkbox"]):focus,
.lp-popup-field select:focus,
.lp-popup-field textarea:focus {
  border-bottom-color: #00c8e8;
}

.lp-popup-field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill,
.lp-popup-field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill:hover,
.lp-popup-field input:not([type="radio"]):not([type="checkbox"]):-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
  background-color: transparent !important;
}

.lp-popup-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.6)' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
}

.lp-popup-field textarea {
  min-height: 104px;
  resize: vertical;
  text-align: left;
  line-height: 1.5;
  padding-top: 10px;
}

.lp-popup-field select option {
  background: #2d2060;
  color: #fff;
}

.lp-popup-btn-row {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 18px;
}

.lp-cta-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c2e0, #0080c8);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 13px 36px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(0, 180, 220, 0.38);
  transition: opacity 0.2s, transform 0.15s;
}

.lp-cta-teal:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.lp-cta-teal:active {
  transform: scale(.97);
}

.lp-popup-btn-submit {
  background: linear-gradient(135deg, #00c2e0, #0080c8);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 10px 28px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 180, 220, 0.35);
  transition: opacity 0.2s, transform 0.1s;
}

.lp-popup-btn-submit:hover {
  opacity: .9;
}

.lp-popup-btn-submit:active {
  transform: scale(.98);
}

.lp-popup-status {
  font-size: .82rem;
  padding: 6px 0;
  min-height: 1.4em;
  text-align: center;
  color: #000;
  background: none;
}

.lp-toast-success {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: min(960px, calc(100vw - 24px));
  max-width: min(960px, calc(100vw - 24px));
  padding: 18px 24px;
  border-radius: 20px;
  border: 1px solid rgba(245, 196, 66, 0.35);
  background: linear-gradient(135deg, rgba(51, 46, 132, 0.96) 0%, rgba(66, 71, 150, 0.94) 100%);
  box-shadow: 0 18px 48px rgba(13, 10, 52, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lp-toast-success.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lp-toast-success__ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #f4c542;
  flex: 0 0 auto;
}

.lp-toast-success__message {
  color: #f4c542;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .lp-toast-success {
    top: 14px;
    gap: 12px;
    min-width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    padding: 14px 16px;
    border-radius: 16px;
  }

  .lp-toast-success__ring {
    width: 36px;
    height: 36px;
  }

  .lp-toast-success__message {
    font-size: .96rem;
  }

  .lp-popup-hero {
    display: none;
  }

  .lp-popup-close {
    top: 3px;
    right: 3px;
  }

  .lp-popup-card {
    min-height: auto;
    width: 100%;
    border-radius: 16px;
  }

  .lp-popup-panel {
    padding: 28px 20px 24px;
  }

  .lp-popup-row {
    flex-direction: column;
    gap: 14px;
  }

  .lp-popup-overlay {
    padding: 12px;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }
}

/* ── SSM Dosar popup (direct embed) ── */
.lp-popup-dosar-card {
  position: relative;
  width: 98vw;
  max-width: 1200px;
  height: 92vh;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(20, 10, 60, 0.65);
  background: rgba(110, 95, 175, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(28px);
  transition: transform 0.35s cubic-bezier(.2, .8, .4, 1);
}

.lp-popup-overlay.open .lp-popup-dosar-card {
  transform: translateY(0);
}

.lp-popup-close--dosar {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 2.2rem;
  font-weight: 100;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: color 0.25s, transform 0.3s cubic-bezier(.4, 0, .2, 1);
  padding: 4px 8px;
}

.lp-popup-close--dosar:hover {
  color: var(--lp-gold);
  transform: rotate(90deg) scale(1.15);
}

@media (max-width: 700px) {
  .lp-popup-dosar-card {
    height: 96vh;
    border-radius: 12px;
  }
}

/* ── Scoped form styles (embedded formular-ssm.html) ── */
.ssm-dosar-wrap {
  --glass-border: rgba(255, 255, 255, .18);
  --input-border: rgba(255, 255, 255, .55);
  --input-text: #fff;
  --input-placeholder: rgba(255, 255, 255, .35);
  --input-bg: transparent;
  --input-focus: #00c8e8;
  --text-heading: #fff;
  --text-muted: rgba(255, 255, 255, .65);
  --text-label: rgba(255, 255, 255, .75);
  --text-ssm: rgba(255, 255, 255, .45);
  --accent: #00c2e0;
  --accent-btn-from: #00c2e0;
  --accent-btn-to: #0080c8;
  --radius-btn: 9999px;
  --radius-emp: 12px;
  --transition-fast: .2s ease;
  --transition-med: .25s ease;
  --transition-dot: background .3s, width .3s;
  --bg-card: rgba(60, 45, 120, .35);
  --border-card: rgba(255, 255, 255, .12);
  --text-remove: rgba(255, 200, 255, .8);
  --border-remove: rgba(255, 200, 255, .3);
  --border-add: rgba(255, 255, 255, .25);
  --bg-card-hover: rgba(255, 255, 255, .06);
  --accent-darker: rgba(255, 255, 255, .1);
  --text-secondary: rgba(255, 255, 255, .75);
  flex: 1;
  overflow: hidden;
  display: flex;
  min-height: 0;
}

@keyframes ssm-spin {
  to {
    transform: rotate(360deg);
  }
}


.ssm-dosar-wrap .card {
  width: 100%;
  max-width: none;
  min-height: 0;
  box-shadow: none;
  background: transparent;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  display: flex;
  overflow: hidden;
  flex: 1
}

.ssm-dosar-wrap .hero {
  border-right: 1px solid var(--glass-border);
  background: linear-gradient(170deg, rgba(60, 40, 160, .55) 0%, rgba(30, 20, 100, .75) 100%), url(https://images.unsplash.com/photo-1504813184591-01572f98c85f?w=800&q=80) 50%/cover no-repeat;
  flex-direction: column;
  flex: 0 0 300px;
  justify-content: space-between;
  padding: 28px 28px 32px;
  display: flex
}

.ssm-dosar-wrap .logo {
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  display: flex
}

.ssm-dosar-wrap .logo-badge {
  outline-offset: -6px;
  border: 2px solid #fff;
  border-radius: 2px;
  outline: 3px solid rgba(255, 255, 255, .35);
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 44px;
  padding: 6px 0;
  display: flex
}

.ssm-dosar-wrap .logo-badge span {
  color: #fff;
  letter-spacing: 0;
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15
}

.ssm-dosar-wrap .logo-text {
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.25
}

.ssm-dosar-wrap .hero-features {
  flex-direction: column;
  gap: 10px;
  display: flex
}

.ssm-dosar-wrap .hero-feature {
  color: rgba(255, 255, 255, .85);
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  line-height: 1.4;
  display: flex
}

.ssm-dosar-wrap .hero-tagline {
  color: #fff;
  opacity: .9;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

.ssm-dosar-wrap .step-dots {
  gap: 8px;
  margin-top: 16px;
  display: flex
}

.ssm-dosar-wrap .dot {
  width: 8px;
  height: 8px;
  transition: var(--transition-dot);
  cursor: pointer;
  background: rgba(255, 255, 255, .3);
  border-radius: 50%
}

.ssm-dosar-wrap .dot.active {
  background: var(--accent);
  border-radius: 4px;
  width: 22px
}

.ssm-dosar-wrap .form-panel {
  background: transparent;
  flex-direction: column;
  flex: 1;
  padding: 36px 40px 32px;
  display: flex;
  overflow-y: auto
}

.ssm-dosar-wrap .form-panel::-webkit-scrollbar {
  width: 4px
}

.ssm-dosar-wrap .form-panel::-webkit-scrollbar-track {
  background: transparent
}

.ssm-dosar-wrap .form-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .2);
  border-radius: 4px
}

.ssm-dosar-wrap .form-header {
  text-align: center;
  margin-bottom: 6px
}

.ssm-dosar-wrap .form-title {
  color: var(--text-heading);
  font-family: Playfair Display, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700
}

.ssm-dosar-wrap .form-sub {
  color: var(--text-muted);
  margin-top: 4px;
  font-size: .82rem
}

.ssm-dosar-wrap .step-label {
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c542;
  text-align: center;
  margin: 18px 0 12px;
  font-size: 1rem;
  font-weight: 700
}

.ssm-dosar-wrap .step {
  flex-direction: column;
  flex: 1;
  gap: 14px;
  display: none
}

.ssm-dosar-wrap .step.active {
  display: flex
}

.ssm-dosar-wrap .row {
  gap: 20px;
  align-items: flex-end;
  display: flex
}

.ssm-dosar-wrap .row .field {
  flex: 1
}

.ssm-dosar-wrap .field {
  flex-direction: column;
  gap: 4px;
  display: flex
}

.ssm-dosar-wrap .field label {
  color: var(--text-label);
  letter-spacing: .4px;
  font-size: .76rem;
  font-weight: 600
}

.ssm-dosar-wrap .field input,
.ssm-dosar-wrap .field select,
.ssm-dosar-wrap .field textarea {
  background: var(--input-bg);
  border: none;
  border-bottom: 1.5px solid var(--input-border);
  color: var(--input-text);
  transition: border-color var(--transition-med);
  border-radius: 0;
  outline: none;
  width: 100%;
  padding: 8px 2px;
  font-family: inherit;
  font-size: .88rem
}

.ssm-dosar-wrap .field input::placeholder {
  color: var(--input-placeholder);
  font-size: .6rem
}

.ssm-dosar-wrap .field textarea::placeholder {
  color: var(--input-placeholder);
  font-size: .6rem
}

.ssm-dosar-wrap .field input:focus,
.ssm-dosar-wrap .field select:focus,
.ssm-dosar-wrap .field textarea:focus {
  border-bottom-color: var(--input-focus)
}

.ssm-dosar-wrap .field input:-webkit-autofill {
  -webkit-text-fill-color: var(--input-text);
  transition: background-color 9999s ease-in-out;
  box-shadow: inset 0 0 0 1000px transparent;
  background-color: transparent !important
}

.ssm-dosar-wrap .field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.6)' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right 4px center;
  background-repeat: no-repeat;
  padding-right: 22px
}

.ssm-dosar-wrap .field select option {
  color: #fff;
  background: #2d2060
}

.ssm-dosar-wrap .field textarea {
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  min-height: 54px;
  padding: 8px 10px
}

.ssm-dosar-wrap .field textarea:focus {
  border-color: var(--input-focus)
}

.ssm-dosar-wrap .check-row {
  color: var(--text-muted);
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  display: flex
}

.ssm-dosar-wrap .check-row input[type=checkbox] {
  accent-color: #f5c542;
  flex-shrink: 0;
  width: auto;
  margin-top: 3px
}

.ssm-dosar-wrap .chk-grid {
  color: var(--text-label);
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  font-size: .82rem;
  display: grid
}

.ssm-dosar-wrap .chk-lbl {
  cursor: pointer;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  display: flex
}

.ssm-dosar-wrap .chk-lbl input[type=checkbox] {
  accent-color: #f5c542;
  flex-shrink: 0;
  width: auto;
  margin-top: 2px
}

.ssm-dosar-wrap .field-label-row {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex
}

.ssm-dosar-wrap .field-label-row>label {
  margin: 0
}

.ssm-dosar-wrap .ssm-only-hire {
  color: var(--text-ssm);
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  font-weight: 400;
  display: flex
}

.ssm-dosar-wrap .ssm-only-hire input[type=checkbox] {
  accent-color: #f5c542
}

.ssm-dosar-wrap .employee-list {
  flex-direction: column;
  gap: 16px;
  display: flex
}

.ssm-dosar-wrap .employee-card {
  background: var(--bg-card);
  border-radius: var(--radius-emp);
  border: 1px solid var(--border-card);
  -webkit-backdrop-filter: blur(6px);
  padding: 16px
}

.ssm-dosar-wrap .employee-card-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  display: flex
}

.ssm-dosar-wrap .employee-card-title {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700
}

.ssm-dosar-wrap .btn-remove {
  border: 1px solid var(--border-remove);
  color: var(--text-remove);
  cursor: pointer;
  transition: background var(--transition-fast);
  background: transparent;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: .75rem
}

.ssm-dosar-wrap .btn-remove:hover {
  background: rgba(255, 255, 255, .08)
}

.ssm-dosar-wrap .btn-add-employee {
  border: 1.5px dashed var(--border-add);
  color: rgba(255, 255, 255, .7);
  border-radius: var(--radius-emp);
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: background var(--transition-fast);
  background: transparent;
  padding: 10px;
  font-size: .82rem
}

.ssm-dosar-wrap .btn-add-employee:hover {
  background: var(--bg-card-hover)
}

.ssm-dosar-wrap .btn-row {
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  display: flex
}

.ssm-dosar-wrap .btn-row--last {
  justify-content: space-between
}

.ssm-dosar-wrap .btn-row--right {
  justify-content: flex-end
}

.ssm-dosar-wrap .btn {
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: opacity var(--transition-fast), transform .1s;
  border: none;
  flex: none;
  padding: 8px 24px;
  font-size: .8rem;
  font-weight: 700
}

.ssm-dosar-wrap .btn:active {
  transform: scale(.98)
}

.ssm-dosar-wrap .btn-primary {
  background: linear-gradient(135deg, var(--accent-btn-from), var(--accent-btn-to));
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 180, 220, .35)
}

.ssm-dosar-wrap .btn-primary:hover {
  opacity: .9
}

.ssm-dosar-wrap .btn-secondary {
  background: var(--accent-darker);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border)
}

.ssm-dosar-wrap .btn-secondary:hover {
  opacity: .8
}

.ssm-dosar-wrap .btn-submit {
  background: linear-gradient(135deg, var(--accent-btn-from), var(--accent-btn-to));
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 180, 220, .35)
}

.ssm-dosar-wrap .btn-submit:hover {
  opacity: .9
}

.ssm-dosar-wrap #ssm-success-screen {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 18px;
  display: none
}

.ssm-dosar-wrap .success-icon {
  background: linear-gradient(135deg, var(--accent-btn-from), var(--accent-btn-to));
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  font-size: 3rem;
  display: flex;
  box-shadow: 0 6px 24px rgba(0, 180, 220, .4)
}

.ssm-dosar-wrap .success-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800
}

.ssm-dosar-wrap .success-sub {
  color: var(--text-muted);
  max-width: 300px;
  font-size: .85rem;
  line-height: 1.6
}

.ssm-dosar-wrap .spinner {
  vertical-align: middle;
  border: 3px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  animation: .7s linear infinite ssm-spin;
  display: none
}

.ssm-dosar-wrap #ssm-summary-box {
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .83rem;
  line-height: 1.8
}

.ssm-dosar-wrap .summary-wrap {
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .83rem;
  line-height: 1.8
}

@media (max-width:680px) {
  .ssm-dosar-wrap .hero {
    display: none
  }

  .ssm-dosar-wrap .form-panel {
    padding: 28px 20px 24px
  }

  .ssm-dosar-wrap .row {
    flex-direction: column
  }
}


.lp-contact-info {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.lp-contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.lp-contact-info a:hover {
  color: var(--lp-gold);
}

.lp-form-status {
  font-size: .85rem;
  padding: 10px 0;
  min-height: 1.4em;
}

/* ── Text content column ── */
.lp-content {
  flex: 1;
  min-width: 0;
}

.lp-section-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-section-num::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--lp-gold);
  opacity: .5;
}

.lp-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}

.lp-section-desc {
  font-size: .93rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 28px;
}

.lp-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
}

.lp-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.76);
}

.lp-feature::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-gold);
  flex-shrink: 0;
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 9999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
}

.lp-cta:active {
  transform: scale(.97);
}

.lp-cta:hover {
  opacity: .85;
}

.lp-cta-primary {
  background: linear-gradient(135deg, #00c2e0, #0080c8);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 180, 220, 0.35);
}

.lp-cta-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.lp-cta-gold {
  background: linear-gradient(135deg, #f5c542, #e0a020);
  color: #1a1000;
  box-shadow: 0 6px 24px rgba(245, 197, 66, 0.3);
}

.lp-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lp-section-inner {
    gap: 48px;
    padding: 0 48px;
  }

  .lp-visual {
    flex: 0 0 360px;
    height: 480px;
  }

  .lp-section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 900px) {
  .lp-nav {
    padding: 18px 24px;
    justify-content: flex-start;
  }

  .lp-menu-btn-label {
    display: none;
  }

  .lp-section {
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .lp-section-inner {
    flex-direction: column !important;
    padding: 70px 28px 32px;
    gap: 32px;
  }

  .lp-visual {
    flex: none;
    width: 100%;
    height: 260px;
  }

  .lp-section-title {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .lp-section-desc {
    font-size: 0.78rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .lp-feature {
    font-size: 0.74rem;
  }

  .lp-features {
    gap: 6px;
    margin-bottom: 18px;
  }

  .lp-visual {
    flex: none;
    width: 100%;
    height: 220px;
  }

  .lp-side-nav {
    display: none;
  }

  .lp-cta-group {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .lp-cta {
    padding: 10px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
  }

  .lp-counter {
    display: none;
  }

  .lp-contact-columns {
    flex-direction: column;
    gap: 32px;
    overflow-y: auto;
  }

  .lp-contact-outer {
    padding: 70px 28px 32px;
    gap: 24px;
    overflow-y: auto;
  }

  #contact .hero-scroll-hint {
    display: none;
  }

  .lp-contact-map-col {
    width: 100%;
    height: 220px;
  }

  .lp-contact-form {
    gap: 8px;
    margin-top: 14px;
  }

  .lp-contact-form textarea {
    min-height: 90px;
  }

  .lp-firm-footer {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
  }

  .lp-firm-footer-col {
    align-items: center;
    text-align: center;
    padding: 0;
    border: none;
  }

  .lp-firm-footer-col1 {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .lp-firm-footer-col2 {
    padding-left: 0;
    text-align: center;
  }

  .lp-firm-footer-col1 .lp-firm-footer-item,
  .lp-firm-footer-col2 .lp-firm-footer-item {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .lp-section-title {
    font-size: 1.6rem;
  }

  .lp-menu-overlay {
    left: 0;
  }

  .lp-menu-nav a {
    font-size: 1.9rem;
  }

  .lp-menu-close {
    right: 20px;
  }
}


/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */

.section-hero {
  overflow: hidden;
  padding: 0;
}

/* ── Slides track ── */
.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  width: 400%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slider[data-current="0"] {
  transform: translateX(0);
}

.hero-slider[data-current="1"] {
  transform: translateX(-25%);
}

.hero-slider[data-current="2"] {
  transform: translateX(-50%);
}

.hero-slider[data-current="3"] {
  transform: translateX(-75%);
}

.hero-slide {
  position: relative;
  width: 25%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

/* ── Background image with subtle Ken Burns ── */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.hero-slide[data-slide="3"] .hero-slide-bg {
  background-position: 80% center;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

/* ── Dark gradient overlay ── */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.05) 100%);
}

/* ═══ GLASSMORPHISM ELEMENTS ═══ */

/* ── Panel principal stânga ── */
.hero-glass-panel {
  position: absolute;
  left: clamp(32px, 7vw, 130px);
  top: 50%;
  transform: translateY(calc(-50% + 40px));
  width: min(720px, 90vw);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(1.0);
  -webkit-backdrop-filter: blur(20px) saturate(1.0);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 46px 52px;
  box-shadow:
    0 24px 60px rgba(4, 2, 24, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.65s ease 0.2s, transform 0.65s cubic-bezier(.2, .8, .4, 1) 0.2s;
}

.hero-slide.active .hero-glass-panel {
  opacity: 1;
  transform: translateY(-50%);
}

.hero-glass-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 18px;
}

.hero-glass-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--lp-gold);
  opacity: 0.5;
}

.hero-glass-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.hero-glass-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-glass-desc {
  font-size: 0.97rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 34px;
}

.hero-glass-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  box-shadow: none;
}

.hero-glass-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow: none;
}

/* ── Feature grid (slide 1) ── */
.hero-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.hero-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
}

.hero-feat-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 2px;
}

.hero-feat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-feat-text strong {
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.hero-feat-text span {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.4;
}

/* ── Carduri statistici dreapta-jos ── */
.hero-glass-stats {
  position: absolute;
  bottom: clamp(60px, 8vh, 100px);
  right: clamp(32px, 6vw, 90px);
  display: flex;
  gap: 14px;
  z-index: 10;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease 0.5s, transform 0.55s cubic-bezier(.2, .8, .4, 1) 0.5s;
}

.hero-slide.active .hero-glass-stats {
  opacity: 1;
  transform: translateY(0);
}

.hero-glass-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px;
  min-width: 88px;
  background: rgba(60, 40, 140, 0.28);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow:
    0 10px 36px rgba(8, 4, 48, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.hero-stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* ── Tag floating dreapta-sus ── */
.hero-glass-tag {
  position: absolute;
  top: clamp(100px, 13vh, 140px);
  right: clamp(32px, 6vw, 90px);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: rgba(60, 40, 140, 0.28);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  box-shadow: 0 8px 28px rgba(8, 4, 48, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  z-index: 10;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s cubic-bezier(.2, .8, .4, 1) 0.4s;
}

.hero-glass-tag svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-slide.active .hero-glass-tag {
  opacity: 1;
  transform: translateX(0);
}

/* ═══ SLIDER CONTROLS ═══ */

/* ── Dots ── */
.hero-slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hero-sdot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.35s, border-color 0.3s;
}

.hero-sdot--active {
  width: 32px;
  background: var(--accent);
  border-color: var(--accent);
}

/* ── Arrows ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(60, 40, 140, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, transform 0.22s;
}

.hero-arrow:hover {
  background: rgba(0, 194, 224, 0.28);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow--prev {
  left: 28px;
}

.hero-arrow--next {
  right: 80px;
}

/* ── Pause button ── */
.hero-pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-pause-btn:hover,
.section-hero:hover .hero-pause-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-pause-btn.is-paused {
  opacity: 1;
  pointer-events: auto;
  background: rgba(201, 162, 39, 0.28);
  border-color: rgba(201, 162, 39, 0.55);
  color: #c9a227;
  transform: translate(-50%, -50%);
}

.hero-pause-btn.is-paused:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-pause-btn .icon-play {
  display: none;
}

.hero-pause-btn.is-paused .icon-pause {
  display: none;
}

.hero-pause-btn.is-paused .icon-play {
  display: block;
}

/* ── Progress bar ── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.10);
  z-index: 20;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #a78bfa);
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 20;
  transition: color 0.2s;
}

.hero-scroll-hint:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Responsive ── */
@media (max-width: 900px) {

  /* Pause button: always visible on touch devices, bottom-right */
  .hero-pause-btn {
    width: 40px;
    height: 40px;
    opacity: 1;
    pointer-events: auto;
    top: auto;
    left: auto;
    bottom: 16px;
    right: 16px;
    transform: none;
  }

  .hero-pause-btn:hover,
  .hero-section:hover .hero-pause-btn {
    transform: none;
  }

  /* Background position adjustments per slide on mobile */
  .hero-slide[data-slide="0"] .hero-slide-bg {
    background-position: 80% center;
  }

  .hero-slide[data-slide="1"] .hero-slide-bg {
    background-position: 70% center;
  }

  .hero-slide[data-slide="2"] .hero-slide-bg {
    background-position: 81% center;
  }

  /* Strip glass card — show content directly over background */
  .hero-glass-panel {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    /* Full slide coverage */
    position: absolute;
    inset: 0;
    width: 100%;
    /* Text centered */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 60px 110px;
    transform: translateY(40px);
  }

  .hero-slide.active .hero-glass-panel {
    transform: translateY(0);
  }

  .hero-glass-eyebrow {
    justify-content: center;
    font-size: 0.62rem;
  }

  .hero-glass-eyebrow::before {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background: var(--lp-gold);
    opacity: 0.5;
  }

  .hero-glass-title {
    font-size: clamp(2.4rem, 7vw, 3.2rem);
  }

  /* Feature grid → vertical list with inline icon */
  .hero-feat-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
    margin-top: 18px;
    width: auto;
  }

  .hero-feat-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero-feat-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-bottom: 0;
  }

  .hero-feat-icon svg {
    width: 13px;
    height: 13px;
  }

  .hero-feat-text strong {
    font-size: 0.80rem;
  }

  .hero-feat-text span {
    display: none;
  }

  /* Button flows naturally below content, centered */
  .hero-glass-btn {
    position: static;
    transform: none;
    align-self: center;
    margin-top: 18px;
    white-space: nowrap;
  }

  .hero-glass-btn:hover {
    transform: translateY(-2px);
  }

  .hero-glass-stats {
    display: none;
  }

  .hero-glass-tag {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-arrow {
    display: flex;
    width: 42px;
    height: 42px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .hero-arrow:hover {
    transform: translateY(-50%) scale(1.08);
  }

  .hero-arrow--prev {
    left: 12px;
  }

  .hero-arrow--next {
    right: 12px;
  }

  /* Slide 2 (SSM) — titluri centrate, lista stânga */
  .hero-slide[data-slide="1"] .hero-glass-panel {
    align-items: center;
    text-align: center;
  }

  .hero-slide[data-slide="1"] .hero-glass-eyebrow {
    justify-content: center;
  }

  .hero-slide[data-slide="1"] .hero-glass-title {
    text-align: center;
    line-height: .5;
  }

  .hero-slide[data-slide="1"] .hero-feat-grid {
    align-self: center;
    text-align: left;
  }

  .hero-slide[data-slide="1"] .hero-glass-btn {
    align-self: center;
  }

  /* Slide 1 (Fiscal) — titluri centrate, lista stânga */
  .hero-slide[data-slide="0"] .hero-glass-panel {
    align-items: center;
    text-align: center;
  }

  .hero-slide[data-slide="0"] .hero-glass-eyebrow {
    justify-content: center;
  }

  .hero-slide[data-slide="0"] .hero-glass-title {
    text-align: center;
    line-height: 1.1;
  }

  .hero-slide[data-slide="0"] .hero-feat-grid {
    align-self: center;
    text-align: left;
  }

  .hero-slide[data-slide="0"] .hero-glass-btn {
    align-self: center;
  }

  /* Slide 3 (Web Design) — titluri centrate */
  .hero-slide[data-slide="2"] .hero-glass-panel {
    align-items: center;
    text-align: center;
  }

  .hero-slide[data-slide="2"] .hero-glass-eyebrow {
    justify-content: center;
  }

  .hero-slide[data-slide="2"] .hero-glass-title {
    text-align: center;
    line-height: 1.1;
  }

  .hero-slide[data-slide="2"] .hero-feat-grid {
    align-self: center;
    text-align: left;
  }

  .hero-slide[data-slide="2"] .hero-glass-btn {
    align-self: center;
  }

  /* Slide 4 (Plotter) — titluri centrate, lista stânga */
  .hero-slide[data-slide="3"] .hero-glass-panel {
    align-items: center;
    text-align: center;
  }

  .hero-slide[data-slide="3"] .hero-glass-eyebrow {
    justify-content: center;
  }

  .hero-slide[data-slide="3"] .hero-glass-title {
    text-align: center;
    line-height: 1.1;
  }

  .hero-slide[data-slide="3"] .hero-feat-grid {
    align-self: center;
    text-align: left;
  }

  .hero-slide[data-slide="3"] .hero-glass-btn {
    align-self: center;
  }
}

/* Section webdesign – forțează aliniere sus pe mobile */
@media (max-width: 900px) {
  .lp-section.section-webdesign {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .lp-copyright {
    font-size: 7.5px !important;
    font-weight: 300 !important;
    line-height: 1.6;
    white-space: nowrap;
  }

  .hero-glass-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-title-nowrap {
    display: block;
    white-space: nowrap;
    font-size: 32px;
  }
}

.lp-menu-overlay {
  backdrop-filter: blur(8px);
}

.lp-popup-overlay {
  backdrop-filter: blur(12px);
}

.lp-popup-card {
  background: rgba(80, 65, 140, 0.18);
  backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 80px rgba(20, 10, 60, 0.55);
}

.lp-popup-dosar-card {
  background: rgba(110, 95, 175, 0.38);
  backdrop-filter: blur(18px);
}
