/* ═══════════════════════════════════════════════════════════════
   landing.css — Lohnklar Landing Pages
   Requires: style.css (tokens), Plus Jakarta Sans
   ═══════════════════════════════════════════════════════════════ */

/* ── Site Topbar (Auch von uns) ──────────────────────────────── */
.gk-site-topbar {
  background: #1e3a5f;
  height: 36px;
  position: sticky;
  top: 0;
  z-index: 101;
  display: flex;
  align-items: center;
}
.gk-site-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: flex-end;
}
.gk-site-topbar-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-right: 0.25rem;
  white-space: nowrap;
}
.gk-site-topbar-sites { display: flex; gap: 0.4rem; }
.gk-site-topbar-link {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.gk-site-topbar-link--lk {
  border: 1px solid rgba(37,99,235,0.45);
  color: #93c5fd;
}
.gk-site-topbar-link--lk:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.gk-site-topbar-link--hk {
  border: 1px solid rgba(13,148,136,0.45);
  color: #5eead4;
}
.gk-site-topbar-link--hk:hover { background: #0d9488; color: #fff; border-color: #0d9488; }
.gk-site-topbar-link--fk {
  border: 1px solid rgba(99,102,241,0.45);
  color: #a5b4fc;
}
.gk-site-topbar-link--fk:hover { background: #4338ca; color: #fff; border-color: #4338ca; }
@media (max-width: 640px) { .gk-site-topbar { display: none; } }

/* ── Landing-page header enhancement ────────────────────────── */
.topbar--glass {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(255,255,255,.6);
}

.cta--pill {
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 2px 12px rgba(16,185,129,.3) !important;
  transition: transform .15s, box-shadow .15s !important;
}

.cta--pill:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(16,185,129,.4) !important;
}

/* ── Page wrapper ────────────────────────────────────────────── */
.landing-page {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-base);
}

/* ── Hero ────────────────────────────────────────────────────── */
.lp-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px 64px;
  text-align: center;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.lp-hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 20px;
}

.lp-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.lp-hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 36px;
}

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

.lp-social-proof {
  margin-top: 20px;
  font-size: 13px;
  color: var(--subtle);
}

/* ── Section base ────────────────────────────────────────────── */
.lp-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
}

.lp-section-sm {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px;
}

.lp-section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  text-align: center;
}

.lp-section-sub {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ── Pain points (3-column icon row) ────────────────────────── */
.lp-pain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.lp-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
}

.lp-pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}

.lp-pain-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}

.lp-pain-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Feature grid (2×3 cards) ────────────────────────────────── */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.lp-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16,185,129,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.lp-feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

.lp-feature-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ── FAQ (accordion) ────────────────────────────────────────── */
.lp-faq { max-width: 680px; margin: 0 auto; }

.lp-faq-item {
  border-bottom: 1px solid var(--border);
}

.lp-faq-item:first-child {
  border-top: 1px solid var(--border);
}

.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  user-select: none;
}

.lp-faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
}

.lp-faq-item.open .lp-faq-q::after { content: '−'; }

.lp-faq-a {
  display: none;
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.lp-faq-item.open .lp-faq-a { display: block; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.lp-cta-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 0 24px;
  max-width: 1032px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta-banner h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.lp-cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta-banner .btn.primary,
.lp-cta-banner .btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
}

.lp-cta-banner .btn.primary:hover,
.lp-cta-banner .btn-primary:hover {
  background: var(--accent-dark);
}

/* ── Prose (Impressum / Datenschutz) ────────────────────────── */
.lp-prose {
  max-width: 720px;
}

.lp-prose h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 10px;
}

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

.lp-prose p,
.lp-prose li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.lp-prose ul {
  padding-left: 20px;
  margin: 0 0 12px;
}

.lp-prose li { margin-bottom: 6px; }

.lp-prose a {
  color: var(--accent);
  text-decoration: none;
}

.lp-prose a:hover { text-decoration: underline; }

.lp-prose code {
  font-size: 13px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--ink);
}

/* ── Footer bar ─────────────────────────────────────────────── */
.footer-bar {
  border-top: 4px solid #10b981;
  background: #f8fafc;
  padding: 32px 24px 24px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-bar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}
.footer-logo-mark {
  background: #1a1f2e;
  color: #34d399;
  font-weight: 700;
  font-size: 12px;
  border-radius: 6px;
  padding: 3px 7px;
  letter-spacing: .5px;
}
.footer-bar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
}
.footer-bar-nav a, .footer-bar-family a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.footer-bar-nav a:hover, .footer-bar-family a:hover { color: var(--ink); }
#gk-cookie-settings {
  background: none; border: none; padding: 0; margin: 0;
  color: var(--muted); font: inherit; font-size: inherit;
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 2px; opacity: .8;
  transition: color .15s, opacity .15s;
}
#gk-cookie-settings:hover { color: var(--ink); opacity: 1; }
.footer-bar-family {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
}
.footer-bar-family span { color: #cbd5e1; }
.footer-bar-copy {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-hero { padding: 88px 16px 48px; }
  .lp-hero p { font-size: 16px; }
  .lp-section, .lp-section-sm { padding: 48px 16px; }
  .lp-pain { grid-template-columns: 1fr; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-cta-banner { padding: 36px 24px; margin: 0 16px; }
}

@media (max-width: 480px) {
  .lp-hero-actions { flex-direction: column; }
  .lp-features { grid-template-columns: 1fr; gap: 12px; }
  .lp-cta-banner { padding: 28px 20px; }
}

/* ── Lohnklar/HRklar CTA-Block (Landing-Pages) ──────────────────── */
.lp-lk-cta-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: #1a1f2e;
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-lk-cta-block--teal {
  background: #0d4f4a;
}

.lp-lk-cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: 12px;
}

.lp-lk-cta-content h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.lp-lk-cta-content h2 span {
  color: #34d399;
}

.lp-lk-cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin: 0 0 20px;
  line-height: 1.6;
  max-width: 520px;
}

.lp-lk-cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-lk-cta-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  padding-left: 20px;
  position: relative;
}

.lp-lk-cta-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

.lp-lk-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 50px;
  background: #10b981;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}

.lp-lk-cta-btn:hover {
  background: #059669;
}

.lp-lk-cta-btn--teal {
  background: #0d9488;
}

.lp-lk-cta-btn--teal:hover {
  background: #0f766e;
}

.lp-lk-cta-note {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin: 10px 0 0;
}

.lp-lk-cta-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: #fff;
  min-width: 100px;
}

.lp-lk-cta-visual strong {
  font-size: 15px;
  color: #fff;
}

.lp-lk-cta-visual span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.lp-lk-logo-big {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #34d399;
  color: #1a1f2e;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
}

.lp-lk-logo-big--teal {
  background: #2dd4bf;
}

@media (max-width: 768px) {
  .lp-lk-cta-block {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .lp-lk-cta-visual { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   V2 COMPONENTS – Landing Page Redesign 2026-04-25
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Dark hero wrapper ───────────────────────────────────────────────────── */
.lp-hero-wrap--dark {
  padding-bottom: 0;
}
.lp-hero-wrap--dark .lp-hero {
  padding-top: 104px;
  padding-bottom: 60px;
}
.lp-hero-wrap--dark .lp-eyebrow {
  color: #6ee7b7;
}
.lp-hero-wrap--dark h1 {
  color: #fff;
}
.lp-hero-wrap--dark .lp-hero p,
.lp-hero-wrap--dark .lp-hero .lead {
  color: rgba(255,255,255,.72);
}
.lp-hero-wrap--dark .trust-pill {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}

/* Button overrides inside hero */
.lp-hero-actions .btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  background: var(--accent);
  color: #fff;
  border: none;
}
.lp-hero-actions .btn:hover { background: var(--accent-dark); }
.lp-hero-actions .btn-ghost {
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--muted);
}
.lp-hero-actions .btn-ghost:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.lp-hero-wrap--dark .lp-hero-actions .btn {
  background: #10b981;
  color: #fff;
}
.lp-hero-wrap--dark .lp-hero-actions .btn:hover { background: #059669; }
.lp-hero-wrap--dark .lp-hero-actions .btn-ghost {
  border-color: rgba(255,255,255,.32);
  color: rgba(255,255,255,.82);
}
.lp-hero-wrap--dark .lp-hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* Trust pill base style */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* ── Stats Bar ───────────────────────────────────────────────────────────── */
.lp-statsbar {
  display: flex;
  justify-content: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.lp-stat {
  flex: 1;
  min-width: 140px;
  max-width: 240px;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid var(--border);
}
.lp-stat:last-child { border-right: none; }
.lp-stat-value {
  display: block;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.lp-stat-value--green { color: var(--accent); }
.lp-stat-value--blue  { color: #2563eb; }
.lp-stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Feature card icon color variants ───────────────────────────────────── */
.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(16,185,129,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.lp-feature-icon--blue   { background: rgba(37,99,235,.10);   color: #2563eb; }
.lp-feature-icon--teal   { background: rgba(13,148,136,.10);  color: #0d9488; }
.lp-feature-icon--purple { background: rgba(124,58,237,.10);  color: #7c3aed; }
.lp-feature-icon--amber  { background: rgba(245,158,11,.10);  color: #d97706; }

/* Card top accent stripe */
.lp-feature-card--green { border-top: 3px solid var(--accent); }
.lp-feature-card--blue  { border-top: 3px solid #2563eb; }
.lp-feature-card--teal  { border-top: 3px solid #0d9488; }
.lp-feature-card--amber { border-top: 3px solid #f59e0b; }

/* ── Lead Capture Box ────────────────────────────────────────────────────── */
.lp-lead-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.lp-lead-box-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 10px;
}
.lp-lead-box h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}
.lp-lead-box h2 em {
  font-style: normal;
  color: #6ee7b7;
}
.lp-lead-box-body p {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  margin: 0 0 24px;
  line-height: 1.6;
  max-width: 480px;
}
.lp-lead-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-lead-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  background: #10b981;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.lp-lead-btn:hover { background: #059669; transform: translateY(-1px); }
.lp-lead-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.82);
}
.lp-lead-btn--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
  color: #fff;
  transform: translateY(-1px);
}
.lp-lead-note {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin: 10px 0 0;
}
.lp-lead-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.lp-lead-avatar {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #10b981;
  color: #0f172a;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}
.lp-lead-avatar--teal { background: #0d9488; }
.lp-lead-name { font-size: 14px; font-weight: 600; color: #fff; }
.lp-lead-role { font-size: 12px; color: rgba(255,255,255,.45); }

/* Teal/HRklar variant */
.lp-lead-box--teal {
  background: linear-gradient(135deg, #0d4f4a 0%, #0f766e 100%);
}
.lp-lead-box--teal .lp-lead-box-label { color: #5eead4; }
.lp-lead-box--teal h2 em              { color: #2dd4bf; }
.lp-lead-box--teal .lp-lead-btn       { background: #0d9488; }
.lp-lead-box--teal .lp-lead-btn:hover { background: #0f766e; }

/* ── Section with light alt background ──────────────────────────────────── */
.lp-section--alt {
  background: #f8fafc;
}

/* ── Section header (centered title + subtitle block) ───────────────────── */
.lp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

/* ── Feature grid column variants ───────────────────────────────────────── */
.lp-features--3 { grid-template-columns: repeat(3, 1fr); }
.lp-features--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Lead box inner content column ──────────────────────────────────────── */
.lp-lead-content { /* natural flex child of the 1fr column — no extra styles needed */ }

/* ── Responsive V2 ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-statsbar { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; }
  .lp-stat    { min-width: 120px; }
}
@media (max-width: 768px) {
  .lp-lead-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 0;
  }
  .lp-lead-visual { display: none; }
  .lp-hero-wrap--dark .lp-hero { padding-top: 88px; padding-bottom: 44px; }
  .lp-features--3,
  .lp-features--4 { grid-template-columns: 1fr; }
  .lp-section-header { margin-bottom: 28px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .lp-features--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Cross-Link Strip ──────────────────────────────────────────────────────── */
.lp-also {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 24px 0;
}
.lp-also-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-also-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.lp-also-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-also-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #bfdbfe;
  transition: background .15s, border-color .15s;
}
.lp-also-link:hover {
  background: #dbeafe;
  border-color: #93c5fd;
}

/* ════════════════════════════════════════════════════════════════════════════
   SPLIT HERO – 2-column layout with visual card
   ════════════════════════════════════════════════════════════════════════════ */

.lp-hero--split {
  max-width: 1200px;
  padding: 96px 24px 72px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.lp-hero--split .lp-eyebrow { text-align: left; }
.lp-hero--split h1          { text-align: left; }
.lp-hero--split .lead       { text-align: left; margin-left: 0; margin-right: 0; }
.lp-hero--split .lp-social-proof { text-align: left; }
.lp-hero--split .lp-hero-actions { justify-content: flex-start; }

.lp-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero Visual Card ────────────────────────────────────────────────────── */
.lp-hero-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  position: relative;
  z-index: 1;
}

.lp-hero-card--light {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-hero-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.lp-hero-card--light .lp-hero-card-title { color: #94a3b8; }

.lp-hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 12px 0;
}
.lp-hero-card--light .lp-hero-card-divider { background: #e2e8f0; }

/* Cost rows */
.lp-hero-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
}
.lp-hero-cost-row .label { color: rgba(255,255,255,.6); }
.lp-hero-cost-row .value { color: rgba(255,255,255,.9); font-weight: 500; font-variant-numeric: tabular-nums; }
.lp-hero-card--light .lp-hero-cost-row .label { color: #64748b; }
.lp-hero-card--light .lp-hero-cost-row .value { color: #0f172a; }

.lp-hero-cost-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 2px solid rgba(16,185,129,.4);
  padding-top: 10px;
  margin-top: 6px;
}
.lp-hero-cost-total .total-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
.lp-hero-cost-total .total-value { font-size: 20px; font-weight: 800; color: #10b981; font-variant-numeric: tabular-nums; }
.lp-hero-card--light .lp-hero-cost-total .total-label { color: #0f172a; }

.lp-hero-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  background: rgba(16,185,129,.18);
  color: #34d399;
  margin-top: 8px;
}
.lp-hero-card--light .lp-hero-card-badge { background: #d1fae5; color: #059669; }

/* Salary band bars */
.lp-hero-band {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.lp-hero-band-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  width: 72px;
  flex-shrink: 0;
}
.lp-hero-card--light .lp-hero-band-label { color: #64748b; }
.lp-hero-band-track {
  flex: 1;
  height: 7px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.lp-hero-card--light .lp-hero-band-track { background: #e2e8f0; }
.lp-hero-band-fill {
  height: 100%;
  border-radius: 4px;
  background: rgba(16,185,129,.55);
}
.lp-hero-band-fill--full { background: #10b981; }
.lp-hero-band-value {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  width: 58px;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.lp-hero-card--light .lp-hero-band-value { color: #0f172a; }

.lp-hero-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 10px;
  margin-top: 4px;
  font-size: 13px;
}
.lp-hero-offer-row .label { color: rgba(255,255,255,.6); }
.lp-hero-offer-row .value { font-weight: 700; color: #10b981; }
.lp-hero-card--light .lp-hero-offer-row { border-top-color: #e2e8f0; }
.lp-hero-card--light .lp-hero-offer-row .label { color: #64748b; }

/* Client rows (Kanzlei) */
.lp-hero-client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.lp-hero-client-row:last-child { margin-bottom: 0; }
.lp-hero-card--light .lp-hero-client-row { background: #f8fafc; border-color: #e2e8f0; }

.lp-hero-client-info { display: flex; align-items: center; gap: 8px; }
.lp-hero-client-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lp-hero-client-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); }
.lp-hero-card--light .lp-hero-client-name { color: #0f172a; }
.lp-hero-client-status { font-size: 11px; color: rgba(255,255,255,.4); }
.lp-hero-card--light .lp-hero-client-status { color: #94a3b8; }

.lp-hero-client-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(16,185,129,.18);
  color: #34d399;
}
.lp-hero-card--light .lp-hero-client-badge { background: #d1fae5; color: #059669; }
.lp-hero-client-badge--blue { background: rgba(37,99,235,.18); color: #93c5fd; }
.lp-hero-card--light .lp-hero-client-badge--blue { background: #dbeafe; color: #2563eb; }
.lp-hero-client-badge--amber { background: rgba(245,158,11,.18); color: #fcd34d; }
.lp-hero-card--light .lp-hero-client-badge--amber { background: #fef3c7; color: #b45309; }

/* ── CTA Banner with glow effect ─────────────────────────────────────────── */
.lp-cta-glow {
  background: #0f172a;
  border-radius: 32px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}

.lp-cta-glow::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 320px; height: 320px;
  background: rgba(16,185,129,.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.lp-cta-glow::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 200px; height: 200px;
  background: rgba(37,99,235,.08);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.lp-cta-glow-content { position: relative; z-index: 1; }

.lp-cta-glow-content h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  max-width: 500px;
  line-height: 1.25;
}

.lp-cta-glow-content p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  margin: 0;
  max-width: 440px;
  line-height: 1.6;
}

.lp-cta-glow-action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.lp-cta-glow-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #10b981;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 40px rgba(16,185,129,.3);
  transition: transform .15s, background .15s, box-shadow .15s;
}

.lp-cta-glow-btn:hover {
  transform: scale(1.04);
  background: #059669;
  box-shadow: 0 0 60px rgba(16,185,129,.4);
}

@media (max-width: 768px) {
  .lp-cta-glow {
    flex-direction: column;
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    gap: 28px;
  }
  .lp-cta-glow-content h2 { max-width: 100%; }
}

/* ── Responsive split hero ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero--split {
    grid-template-columns: 1fr;
    padding: 80px 24px 52px;
    gap: 36px;
    text-align: center;
  }
  .lp-hero--split .lp-eyebrow,
  .lp-hero--split h1,
  .lp-hero--split .lead,
  .lp-hero--split .lp-social-proof { text-align: center; }
  .lp-hero--split .lp-hero-actions { justify-content: center; }
  .lp-hero-right { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .lp-hero-right { display: none; }
  .lp-hero--split { padding: 80px 16px 44px; gap: 0; }
}
