/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --g950: #25342a;
  --g800: #3c4f38;
  --g600: #6d7e5f;
  --g400: #92a079;
  --g200: #c4c8ac;
  --gold: #bd9965;
  --gold-light: #d4b88a;
  --cream: #f1e8dc;

  --cream-dark: #e4d5c0;
  --white: #faf7f2;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--g950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ───────────────────────────────────────────────────── */
.ls-nav {
  position: fixed;
  background: var(--g950);
  border-bottom: 1px solid;
  border-bottom-color: var(--gold);
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  height: 68px;
}

.ls-nav.scrolled {
  background: rgba(37,52,42,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid;
  border-bottom-color: var(--gold);
  #border-bottom: 1px solid rgba(189,153,101,0.2);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.ls-nav-brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.ls-nav-brand img { height: 48px; width: auto; }

.ls-nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none;
  justify-content: center; padding: 5% 1rem; margin-right: 0;
}

.ls-nav-links li { display: flex; align-items: center; }

.ls-nav-links li + li::before {
  content: ''; display: block;
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.10); flex-shrink: 0;
}

.ls-nav-links a {
  font-size: 0.85rem; font-weight: 400;
  color: rgba(212,184,138,0.85);
  text-decoration: none; letter-spacing: 0.01em;
  padding: 0.25rem 0.9rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap; text-align: center;
  line-height: 1.35; border-radius: 4px;
}

.ls-nav-links a:hover { color: white !important; background: rgba(255,255,255,0.07); }
.ls-nav-links a.active { color: white; font-weight: 600; }

.ls-nav-btn {
  background: var(--gold) !important;
  color: var(--g950) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.73rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
  flex-shrink: 0; margin-left: 0.5rem;
  white-space: nowrap;
}

.ls-nav-btn:hover { background: var(--gold-light) !important; }

/* ── HERO FULL ─────────────────────────────────────────────── */
.ls-hero-full {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ls-hero-full-bg {
  position: absolute; inset: 0; z-index: 0;
}

.ls-hero-full-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

.ls-hero-full-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,25,15,0.28);
}

.ls-hero-full-caption {
  position: relative; z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 2rem 7%;
  pointer-events: none;
}

.ls-hero-full-caption strong {
  display: block;
  font-family: var(--body);
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  font-weight: 700; color: white;
  margin-bottom: 0.3rem; letter-spacing: 0.01em;
}

.ls-hero-full-caption span {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  font-weight: 400; color: rgba(255,255,255,0.88);
}

/* ── HERO SPLIT ────────────────────────────────────────── */
.ls-hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Theme: light (default — cream bg) */
.ls-hero-split.theme-light { background: var(--cream); }
.ls-hero-split.theme-light .ls-hero-split-overlay {
  background: linear-gradient(
    to right,
    rgba(241,232,220,1.00) 0%,
    rgba(241,232,220,0.80) 40%,
    rgba(241,232,220,0.00) 100%
  );
}
.ls-hero-split.theme-light .ls-hs-tag          { color: var(--g600); }
.ls-hero-split.theme-light .ls-hs-headline      { color: var(--g950); }
.ls-hero-split.theme-light .ls-hs-headline-em   { color: var(--g600); }
.ls-hero-split.theme-light .ls-hs-body          { color: var(--g600); }
.ls-hero-split.theme-light .ls-hs-trust-text    { color: var(--g950); }
.ls-hero-split.theme-light .ls-hs-trust-icon    { color: var(--g800); }
.ls-hero-split.theme-light .ls-hs-btn-primary   {
  background: var(--g800); color: white;
  box-shadow: 0 4px 20px rgba(60,79,56,0.2);
}
.ls-hero-split.theme-light .ls-hs-btn-primary:hover { background: var(--g950); }
.ls-hero-split.theme-light .ls-hs-btn-secondary {
  background: transparent; color: var(--g950);
  border: 1.5px solid var(--g950);
}
.ls-hero-split.theme-light .ls-hs-btn-secondary:hover { background: var(--g950); color: #f1e8dc; }

/* Theme: dark (forest green bg) */
.ls-hero-split.theme-dark { background: var(--g950); }
.ls-hero-split.theme-dark .ls-hero-split-overlay {
  background: linear-gradient(
    to right,
    rgba(37,52,42,1.00) 0%,
    rgba(37,52,42,0.80) 40%,
    rgba(37,52,42,0.00) 100%
  );
}
.ls-hero-split.theme-dark .ls-hs-tag          { color: var(--g400); }
.ls-hero-split.theme-dark .ls-hs-headline      { color: #f1e8dc; }
.ls-hero-split.theme-dark .ls-hs-headline-em   { color: var(--gold-light); }
.ls-hero-split.theme-dark .ls-hs-body          { color: rgba(255,255,255,0.68); }
.ls-hero-split.theme-dark .ls-hs-trust-text    { color: rgba(255,255,255,0.75); }
.ls-hero-split.theme-dark .ls-hs-trust-icon    { color: var(--gold-light); }
.ls-hero-split.theme-dark .ls-hs-btn-primary   {
  background: var(--gold); color: white;
  box-shadow: 0 4px 20px rgba(189,153,101,0.3);
}
.ls-hero-split.theme-dark .ls-hs-btn-primary:hover   { background: var(--gold-light); color: var(--g950); }
.ls-hero-split.theme-dark .ls-hs-btn-secondary {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.ls-hero-split.theme-dark .ls-hs-btn-secondary:hover { border-color: white; color: white; }

/* Left column */
.ls-hero-split-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 8rem 5% 6rem;
}

.ls-hero-split-overlay {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 80px;
  z-index: 4;
  pointer-events: none;
}

.ls-hs-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

/* Tag */
.ls-hs-tag {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

/* Headline */
.ls-hs-headline {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.ls-hs-headline-em {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  display: block;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

/* Body */
.ls-hs-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Trust items — horizontal row, icon + text, no circles */
.ls-hs-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
}

.ls-hs-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.ls-hs-trust-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.ls-hs-trust-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
}

/* Buttons */
.ls-hs-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ls-hs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 1.875rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.ls-hs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

/* Right column — full height image */
.ls-hero-split-right {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.ls-hero-split-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ls-hero-split-right-placeholder {
  position: absolute;
  inset: 0;
  background: var(--g800);
}

/* Responsive */
@media (max-width: 1024px) {
  .ls-hs-trust { gap: 1rem 1.75rem; }
}

@media (max-width: 900px) {
  .ls-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ls-hero-split-right {
    min-height: 60vw;
    max-height: 500px;
    order: -1;
  }
  .ls-hero-split-left { padding: 3.5rem 2rem 3rem; }
  .ls-hs-trust { gap: 1rem 1.5rem; }
}

/* ── STATS BAR ─────────────────────────────────────────────── */
.ls-stats-bar {
  background: var(--g950);
  padding: 2.5rem 5%;
}

.ls-stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ls-stat-item {
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.ls-stat-item:first-child { padding-left: 0; }
.ls-stat-item:last-child { border-right: none; }

.ls-stat-num {
  font-family: var(--display);
  font-size: 2.5rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 0.375rem;
}

.ls-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45); font-weight: 300;
}

/* ── FEATURES GRID ─────────────────────────────────────────── */
.ls-features-grid {
  padding: 7rem 5%;
  position: relative; overflow: hidden;
}

.ls-features-grid-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(37,52,42,0.92) 0%, rgba(37,52,42,0.75) 50%, rgba(37,52,42,0.5) 100%),
    linear-gradient(160deg, #3c4f38 0%, #25342a 100%);
}

.ls-features-grid-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
}

.ls-section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
}

.ls-section-title-light {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; color: white;
  line-height: 1.2; margin-bottom: 0.875rem;
}

.ls-section-title-light em { font-style: italic; color: var(--gold-light); }

.ls-section-subtitle-light {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.58);
  max-width: 560px; line-height: 1.75;
  margin-bottom: 4rem;
}

.ls-section-header-center { text-align: center; }
.ls-section-header-center .ls-section-subtitle-light { margin-left: auto; margin-right: auto; }

.ls-big-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 2.5rem;
  margin-bottom: 1.5rem;
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.5rem; align-items: start;
}

.ls-big-card-icon {
  width: 52px; height: 52px;
  background: rgba(189,153,101,0.2);
  border: 1px solid rgba(189,153,101,0.35);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); flex-shrink: 0; font-size: 1.25rem;
}

.ls-big-card-title {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--white); margin-bottom: 0.5rem;
}

.ls-big-card-text {
  font-size: 1rem; font-weight: 300;
  color: var(--cream); line-height: 1.8;
}

.ls-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ls-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.75rem;
  transition: all 0.3s ease;
}

.ls-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(189,153,101,0.3);
}

.ls-card-icon {
  width: 40px; height: 40px;
  background: rgba(109,126,95,0.2);
  border: 1px solid rgba(109,126,95,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g200); margin-bottom: 1.25rem; font-size: 1rem;
}

.ls-card-title {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 500;
  color: white; margin-bottom: 0.5rem; line-height: 1.3;
}

.ls-card-text {
  font-size: 1.0rem; font-weight: 300;
  color: var(--cream); line-height: 1.75;
}

/* ── FEATURES LIST ─────────────────────────────────────────── */
.ls-features-list {
  background: var(--white);
  padding: 6rem 5%;
}

.ls-features-list-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}

.ls-features-image-wrap { position: sticky; top: 100px; }

.ls-features-image {
  width: 100%; max-width: 600px; height: auto;
  display: block; border-radius: 12px;
  box-shadow:
    0 2px 4px rgba(37,52,42,0.04),
    0 12px 32px rgba(37,52,42,0.10),
    0 32px 64px rgba(37,52,42,0.08);
}

.ls-feature-items { display: flex; flex-direction: column; }

.ls-feature-item {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 1.25rem; align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.ls-feature-item:first-child { padding-top: 0; }
.ls-feature-item:last-child { border-bottom: none; }

.ls-feature-badge {
  width: 44px; height: 44px;
  background: var(--cream); border: 1px solid var(--cream-dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1rem; font-weight: 500; color: var(--g600);
  flex-shrink: 0; margin-top: 0.2rem;
}

.ls-feature-title {
  font-family: var(--display);
  font-size: 1.45rem; font-weight: 600;
  color: var(--g950); line-height: 1.2; margin-bottom: 0.75rem;
}

.ls-feature-body {
  font-size: 0.875rem; font-weight: 300;
  color: var(--g600); line-height: 1.8; margin-bottom: 1.25rem;
}

.ls-feature-bullets-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 0.6rem;
}

.ls-feature-bullets {
  list-style: none; display: flex;
  flex-direction: column; gap: 0.35rem;
}

.ls-feature-bullets li {
  display: flex; align-items: baseline;
  gap: 0.6rem; font-size: 0.85rem;
  font-weight: 300; color: var(--g600); line-height: 1.6;
}

.ls-feature-bullets li::before {
  content: '·'; color: var(--g400);
  font-size: 1rem; font-weight: 700;
  flex-shrink: 0; line-height: 1.4;
}

/* ── HOW STEPS ─────────────────────────────────────────────── */
.ls-how-steps { padding: 7rem 5%; background: var(--white); }

.ls-how-inner { max-width: 1200px; margin: 0 auto; }

.ls-section-tag-rose {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #bd9965; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1rem;
}

.ls-section-tag-rose::before {
  content: ''; width: 20px; height: 1.5px;
  background: #bd9965; border-radius: 1px;
}

.ls-section-title-dark {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; color: var(--g950);
  line-height: 1.2; margin-bottom: 1rem;
}

.ls-section-title-dark em { font-style: italic; color: var(--g600); }

.ls-steps-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 4rem;
}

.ls-steps-list { display: flex; flex-direction: column; gap: 2.5rem; }

.ls-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
}

.ls-step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream); border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.1rem; font-weight: 500;
  color: var(--g800); flex-shrink: 0;
}

.ls-step:nth-child(2) .ls-step-num {
  background: var(--g800); color: white; border-color: var(--g800);
}

.ls-step-title {
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--g950); margin-bottom: 0.375rem;
}

.ls-step-text {
  font-size: 0.875rem; font-weight: 300;
  color: var(--g600); line-height: 1.75;
}

/* ── CTA CENTERED ──────────────────────────────────────────── */
.ls-cta-centered {
  padding: 7rem 5%; background: var(--cream); text-align: center;
}

.ls-cta-inner { max-width: 640px; margin: 0 auto; }

.ls-cta-ornament {
  width: 48px; height: 2px; background: var(--gold);
  margin: 0 auto 2rem; border-radius: 1px;
}

.ls-cta-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; color: var(--g950);
  line-height: 1.2; margin-bottom: 1rem;
}

.ls-cta-title em { font-style: italic; color: var(--g600); }

.ls-cta-text {
  font-size: 0.95rem; font-weight: 300;
  color: var(--g600); line-height: 1.8; margin-bottom: 2.5rem;
}

.ls-cta-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 1rem; flex-wrap: wrap;
}

.ls-btn-cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--g800); color: white; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(60,79,56,0.3);
}

.ls-btn-cta-primary:hover { background: var(--g950); transform: translateY(-2px); }

.ls-btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--g600); text-decoration: none;
  padding: 0.9rem 1.5rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 400;
  border: 1.5px solid var(--cream-dark); transition: all 0.25s;
}

.ls-btn-cta-secondary:hover { border-color: var(--g400); color: var(--g800); }

/* ── CONTACT FORM ──────────────────────────────────────────── */
.ls-contact { padding: 7rem 5%; background: var(--white); }

.ls-contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}

.ls-contact-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500; color: var(--g950);
  line-height: 1.2; margin-bottom: 1.25rem;
}

.ls-contact-title em { font-style: italic; color: var(--g600); }

.ls-contact-intro {
  font-size: 0.9rem; font-weight: 300;
  color: var(--g600); line-height: 1.85; margin-bottom: 2.5rem;
}

.ls-contact-item {
  display: flex; align-items: flex-start;
  gap: 0.875rem; margin-bottom: 1.25rem;
}

.ls-contact-icon {
  width: 38px; height: 38px;
  background: var(--cream); border: 1px solid var(--cream-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g800); flex-shrink: 0;
}

.ls-contact-label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--g800); margin-bottom: 0.2rem;
}

.ls-contact-value {
  font-size: 0.875rem; font-weight: 300; color: var(--g600);
}

.ls-form { display: flex; flex-direction: column; gap: 1.125rem; }
.ls-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ls-form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.ls-form-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--g600);
}

.ls-form-input {
  background: var(--cream); border: 1.5px solid var(--cream-dark);
  border-radius: 8px; padding: 0.75rem 1rem;
  font-family: var(--body); font-size: 0.875rem;
  font-weight: 300; color: var(--g950);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}

.ls-form-input:focus {
  border-color: var(--g600);
  box-shadow: 0 0 0 3px rgba(109,126,95,0.1);
  background: white;
}

.ls-form-input::placeholder { color: var(--g400); }
textarea.ls-form-input { resize: vertical; min-height: 110px; }

.ls-form-submit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--g800); color: white; border: none;
  padding: 0.875rem 2rem; border-radius: 8px;
  font-family: var(--body); font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s; align-self: flex-start;
}

.ls-form-submit:hover { background: var(--g950); transform: translateY(-1px); }

/* ── FOOTER ────────────────────────────────────────────────── */
.ls-footer { background: var(--g950); padding: 4rem 5% 2rem; }

.ls-footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem;
}

.ls-footer-brand-text {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.75;
  max-width: 260px; margin-top: 0.75rem;
}

.ls-footer-top img { max-height: 48px; width: auto; display: block; }

.ls-footer-col-title {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1.25rem;
}

.ls-footer-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 0.625rem;
}

.ls-footer-links a {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
}

.ls-footer-links a:hover { color: var(--gold-light); }

.ls-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

.ls-footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ls-footer-legal a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.ls-footer-legal a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ls-nav-links a { font-size: 0.68rem; padding: 0.25rem 0.6rem; }
  .ls-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ls-nav-links { display: none; }
  .ls-hero-split-content { grid-template-columns: 1fr; }
  .ls-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .ls-card-grid { grid-template-columns: 1fr; }
  .ls-features-list-inner { grid-template-columns: 1fr; }
  .ls-features-image-wrap { position: static; }
  .ls-steps-grid { grid-template-columns: 1fr; }
  .ls-contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ls-form-row { grid-template-columns: 1fr; }
  .ls-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ls-footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .ls-stats-inner { grid-template-columns: 1fr 1fr; }
  .ls-footer-top { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   VERTICAL ACCORDION — 3 expandable stripe panels
   ══════════════════════════════════════════════════════════════ */

.ls-vaccordion {
  background: var(--cream);
  padding: 5.5rem 5% 5rem;
}

/* Header */
.ls-va-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 4rem;
}

.ls-va-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.ls-va-header-tag::before,
.ls-va-header-tag::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.ls-va-header-headline {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--g950);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.ls-va-header-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--g950);
  line-height: 1.75;
}

/* ── Panels container ── */
.ls-va-panels {
  display: flex;
  align-items: stretch;
  min-height: 680px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(37,52,42,0.06),
    0 12px 40px rgba(37,52,42,0.10);
}

/* ── Individual panel ── */
.ls-va-panel {
  display: flex;
  flex: 1;
  min-width: 0;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.ls-va-panel--active { flex: 5; }
.ls-va-panel--hidden { flex: 0; }

/* ── Connector between panels ── */
.ls-va-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s;
}

.ls-va-connector-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(189,153,101,0.2);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem; font-weight: 300;
  cursor: default;
  transition: background 0.2s;
}

/* ── Sidebar ── */
.ls-va-sidebar {
  width: 168px;
  flex-shrink: 0;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
  position: relative;
}

/* Sidebar color variants */
.ls-va-sidebar--dark   { background: var(--g950); }
.ls-va-sidebar--medium { background: var(--g800); }
.ls-va-sidebar--light  { background: var(--g200); }

/* Sidebar icon */
.ls-va-sb-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 2rem;
}
.ls-va-sidebar--dark .ls-va-sb-icon,
.ls-va-sidebar--medium .ls-va-sb-icon { color: var(--gold-light); }
.ls-va-sidebar--light .ls-va-sb-icon  { color: var(--g800); }

/* Sidebar number */
.ls-va-sb-num {
  font-size: 1.75rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.ls-va-sidebar--dark .ls-va-sb-num,
.ls-va-sidebar--medium .ls-va-sb-num { color: rgba(255,255,255,0.55); }
.ls-va-sidebar--light .ls-va-sb-num  { color: var(--g600); }

/* Sidebar label */
.ls-va-sb-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.ls-va-sidebar--dark .ls-va-sb-label,
.ls-va-sidebar--medium .ls-va-sb-label { color: white; }
.ls-va-sidebar--light .ls-va-sb-label  { color: var(--g950); }

/* Italic tag */
.ls-va-sb-italic {
  font-family: var(--display);
  font-size: 1.0 rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

/* Divider */
.ls-va-sb-divider {
  width: 32px; height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* Sidebar body (expanded only) */
.ls-va-sb-body {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.ls-va-sidebar--dark .ls-va-sb-body,
.ls-va-sidebar--medium .ls-va-sb-body { color: rgba(255,255,255,0.55); }
.ls-va-sidebar--light .ls-va-sb-body  { color: var(--g600); }

/* Vorteil block */
.ls-va-vorteil {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.ls-va-sidebar--light .ls-va-vorteil {
  border-top-color: rgba(37,52,42,0.15);
}

.ls-va-vorteil-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.ls-va-vorteil-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.ls-va-vorteil-list { list-style: none; }
.ls-va-vorteil-list li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.6;
}
.ls-va-sidebar--dark .ls-va-vorteil-list li,
.ls-va-sidebar--medium .ls-va-vorteil-list li { color: rgba(255,255,255,0.55); }
.ls-va-sidebar--light .ls-va-vorteil-list li  { color: var(--g600); }

.ls-va-vorteil-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Chevron toggle at bottom of sidebar */
.ls-va-sb-chevron {
  margin-top: 2rem;
  font-size: 0.9rem;
  transition: transform 0.35s;
  flex-shrink: 0;
}
.ls-va-sidebar--dark .ls-va-sb-chevron { color:var(--cream); }
.ls-va-sidebar--medium .ls-va-sb-chevron { color:var(--cream-dark); }
.ls-va-sidebar--light .ls-va-sb-chevron  { color: var(--g900); }

/* ── Content area (right of sidebar) ── */
.ls-va-content {
  flex: 1;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── TEASER (default collapsed view) ── */
.ls-va-teaser {
  padding: 3rem 2.5rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ls-va-teaser-headline {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--g950);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.ls-va-teaser-divider {
  width: 32px; height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.ls-va-teaser-body {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--g600);
  line-height: 1.8;
}

.ls-va-teaser-caret {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 1.1rem;
  color: var(--g400);
}

/* ── EXPANDED content wrapper ── */
.ls-va-expanded {
  padding: 3rem 3rem 2.5rem;
  flex: 1;
  overflow-y: auto;
}

.ls-va-exp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.ls-va-exp-tag::before,
.ls-va-exp-tag::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.ls-va-exp-headline {
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 600;
  color: var(--g950);
  line-height: 1.12;
  margin-bottom: 0.875rem;
}

.ls-va-exp-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--g600);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

/* ══ PANEL 1: Feature card grid ══ */
.ls-va-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.ls-va-fcard {
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 1.25rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ls-va-fcard-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ls-va-fcard-icon {
  width: 44px; height: 44px;
  background: var(--g950);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ls-va-fcard-num {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--g400);
  line-height: 1;
}

.ls-va-fcard-title {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--g950);
  line-height: 1.25;
}

.ls-va-fcard-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.ls-va-fcard-bullets li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--g600);
  line-height: 1.5;
}

.ls-va-fcard-bullets li::before {
  content: '·';
  color: var(--g400);
  font-weight: 700;
  flex-shrink: 0;
}

/* Panel 1 bottom bar */
.ls-va-p1-bottom {
  background: var(--g950);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}

.ls-va-p1-bottom-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ls-va-p1-bottom-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(189,153,101,0.4);
  background: rgba(189,153,101,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ls-va-p1-bottom-text {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ══ PANEL 2: Specialization cards ══ */
.ls-va-spez-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.ls-va-spez-grid--secondary {
  grid-template-columns: repeat(2, 1fr);
}

.ls-va-spez-card {
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.ls-va-spez-card--soon1 {
  background: var(--cream-dark);
}

.ls-va-spez-card-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}

.ls-va-spez-icon {
  width: 56px; height: 56px;
  background: var(--g950);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ls-va-spez-card--soon .ls-va-spez-icon {
  background: var(--cream-dark);
  color: var(--gold);
}

.ls-va-spez-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--g950);
  line-height: 1.2;
}

.ls-va-spez-divider {
  width: 32px; height: 1.5px;
  background: var(--gold);
  margin: 0.75rem 0 1rem;
  flex-shrink: 0;
}

.ls-va-spez-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.ls-va-spez-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--g600);
  line-height: 1.5;
}

.ls-va-spez-bullet-icon {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ls-va-spez-bullet-icon svg {
  width: 7px; height: 7px;
}

/* Spez card footer */
.ls-va-spez-footer {
  background: var(--g950);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: auto;
}

.ls-va-spez-footer-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(189,153,101,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.ls-va-spez-footer-text {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}

.ls-va-spez-coming-footer {
  background: var(--cream-dark);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: auto;
}

.ls-va-spez-coming-icon {
  color: var(--g400);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ls-va-spez-coming-text {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--g600);
  line-height: 1.45;
}

/* ══ PANEL 3: Module cards ══ */
.ls-va-module-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ls-va-mcard {
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 0.875rem 0.75rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.ls-va-mcard-badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g950);
  background: var(--cream-dark);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  margin-bottom: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.ls-va-mcard-badge--gold {
  background: var(--gold);
  color: white;
}

.ls-va-mcard-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--g950);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin: 0 auto 0.875rem;
}

.ls-va-mcard-title {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--g950);
  line-height: 1.2;
  margin-bottom: 0.375rem;
  text-align: center;
}

.ls-va-mcard-body {
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--g600);
  line-height: 1.55;
  margin-bottom: 0.625rem;
  text-align: center;
}

.ls-va-mcard-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  margin-bottom: 0.625rem;
}

.ls-va-mcard-bullets li {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--g600);
  line-height: 1.4;
}

.ls-va-mcard-bullets li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.ls-va-mcard-footer {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}

.ls-va-mcard-footer-icon {
  color: var(--g400);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ls-va-mcard-footer-text {
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--g400);
  line-height: 1.4;
}

/* Panel 3 bottom CTA */
.ls-va-p3-cta {
  background: var(--g950);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.ls-va-p3-cta-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(189,153,101,0.15);
  border: 1.5px solid rgba(189,153,101,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.25rem;
}

.ls-va-p3-cta-headline {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.ls-va-p3-cta-body {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.ls-va-p3-stat {
  text-align: center;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.ls-va-p3-stat-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(189,153,101,0.12);
  border: 1px solid rgba(189,153,101,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.8rem;
  margin: 0 auto 0.5rem;
}

.ls-va-p3-stat-text {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* Footer note */
.ls-va-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--g600);
  text-align: center;
  padding-top: 0.5rem;
}

.ls-va-footer-note-icon {
  color: var(--g400);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .ls-va-feature-grid  { grid-template-columns: repeat(3, 1fr); }
  .ls-va-module-grid   { grid-template-columns: repeat(3, 1fr); }
  .ls-va-p3-cta        { grid-template-columns: 60px 1fr; }
  .ls-va-p3-stat       { display: none; }
}

@media (max-width: 900px) {
  .ls-va-panels        { flex-direction: column; min-height: auto; }
  .ls-va-panel         { flex: none !important; }
  .ls-va-panel--hidden { display: none; }
  .ls-va-connector     { width: auto; height: 48px; flex-direction: row; }
  .ls-va-sidebar       { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; align-items: center; padding: 1.25rem 1.5rem; }
  .ls-va-sb-icon       { margin-bottom: 0; font-size: 1.25rem; }
  .ls-va-feature-grid  { grid-template-columns: repeat(2, 1fr); }
  .ls-va-spez-grid     { grid-template-columns: 1fr; }
  .ls-va-module-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* Alpine cloak — hide x-cloak elements until Alpine initialises */
[x-cloak] { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   PRICING SYSTEM SECTION
   ══════════════════════════════════════════════════════════════ */

/* ── Wrapper themes ── */
.ls-pricing { padding: 5rem 10% 0; }
.ls-pricing.theme-dark  { background: var(--g950); }
.ls-pricing.theme-light { background: var(--white); }

/* ── Title ── */
.ls-pricing-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.theme-dark  .ls-pricing-title { color: white; }
.theme-light .ls-pricing-title { color: var(--g950); }

/* ── Grid — equal columns, cards stretch to same height ── */
.ls-pricing-grid {
  display: grid;
  grid-template-columns: 2fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

/* ── Connector — vertically centred ── */
.ls-pricing-connector {
  display: flex;
  align-items: center;    /* ← centred, not top-aligned */
  justify-content: center;
  padding: 0 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  flex-shrink: 0;
}
.theme-dark  .ls-pricing-connector { color: rgba(255,255,255,.35); }
.theme-light .ls-pricing-connector { color: rgba(37,52,42,.35); }

/* ── Card shell — fills full grid-row height ── */
.ls-pc {
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* dark theme card */
.theme-dark .ls-pc           { background: var(--g800); }
.theme-dark .ls-pc--summary  { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }

/* light theme card */
.theme-light .ls-pc          { background: white; box-shadow: 0 4px 32px rgba(37,52,42,.08); }
.theme-light .ls-pc--summary { background: var(--cream-dark); border: 1px solid rgba(37,52,42,.1); }

/* ── Card 1: badge row ── */
.ls-pc1-badge-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.ls-pc1-col {
  display: flex;
  justify-content: center;
}

.ls-pc1-plus {
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  padding: 0 0.5rem;
}
.theme-dark  .ls-pc1-plus { color: rgba(255,255,255,.4); }
.theme-light .ls-pc1-plus { color: rgba(37,52,42,.35); }

.ls-pc-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; letter-spacing: .04em;
  flex-shrink: 0;
}
.theme-dark  .ls-pc-badge { background: white;       color: var(--g950); }
.theme-light .ls-pc-badge { background: var(--g950); color: white; }

/* ── Card 1: two centred columns ── */
.ls-pc1-top {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 1.5rem;
  margin-bottom: 1.75rem;
}

.ls-pc1-divider { }
.theme-dark  .ls-pc1-divider { background: rgba(255,255,255,.12); }
.theme-light .ls-pc1-divider { background: rgba(37,52,42,.1); }

/* Each sub-column: centred */
.ls-pc1-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
}

/* ── Icons ── */
.ls-pc-icon { font-size: 2rem; margin-bottom: .5rem; line-height: 1; display: block; }
.theme-dark  .ls-pc-icon { color: rgba(255,255,255,.65); }
.theme-light .ls-pc-icon { color: var(--g600); }

/* ── Sub-titles ── */
.ls-pc-subtitle {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 500; line-height: 1.2;
  color: var(--cream);
  margin-bottom: .5rem;
}
.theme-dark  .ls-pc-subtitle { color: white; }
.theme-light .ls-pc-subtitle { color: var(--g950); }

/* ── Body ── */
.ls-pc-body { font-size: 1rem; font-weight: 300; line-height: 1.65; }
.theme-dark  .ls-pc-body { color: rgba(255,255,255,.55); }
.theme-light .ls-pc-body { color: var(--g600); }

/* ── Included badge ── */
.ls-pc-included-badge {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  border-radius: 8px; padding: .875rem 1rem; margin-bottom: 1.25rem;
  font-size: .875rem; font-weight: 500;
}
.theme-dark  .ls-pc-included-badge { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: white; }
.theme-light .ls-pc-included-badge { background: rgba(37,52,42,.07);   border: 1px solid rgba(37,52,42,.12);   color: var(--g950); }

.ls-pc-included-check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .7rem; color: white;
}
.theme-dark  .ls-pc-included-check { background: var(--g600); }
.theme-light .ls-pc-included-check { background: var(--g800); }

/* ── Price label ── */
.ls-pc-price-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; text-align: center; margin-bottom: .5rem;
}
.theme-dark  .ls-pc-price-label { color: rgba(255,255,255,.4); }
.theme-light .ls-pc-price-label { color: var(--g400); }

/* ── Price box ── */
.ls-pc-price-box {
  border-radius: 10px; padding: 1.25rem 1.25rem 1rem;
  text-align: center; margin-bottom: .75rem;
}
.theme-dark  .ls-pc-price-box           { background: var(--g950); }
.theme-light .ls-pc-price-box           { background: var(--g950); }
.ls-pc-price-box--gold                  { background: var(--gold) !important; }

.ls-pc-price-amount {
  font-family: var(--display);
  font-size: 3rem; font-weight: 600; color: white; line-height: 1;
}

.ls-pc-price-unit { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.7); margin-top: .375rem; }

.ls-pc-price-sub { font-size: .78rem; font-weight: 300; text-align: center; margin-bottom: 1.25rem; }
.theme-dark  .ls-pc-price-sub { color: rgba(255,255,255,.4); }
.theme-light .ls-pc-price-sub { color: var(--g400); }

/* ── Info note ── */
.ls-pc-info {
  display: flex; align-items: flex-start; gap: .625rem;
  border-top: 1px solid; padding-top: 1.25rem; margin-top: auto;
}
.theme-dark  .ls-pc-info { border-top-color: rgba(255,255,255,.08); }
.theme-light .ls-pc-info { border-top-color: rgba(37,52,42,.08); }

.ls-pc-info-icon {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; flex-shrink: 0; margin-top: 1px;
}
.theme-dark  .ls-pc-info-icon { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.5); }
.theme-light .ls-pc-info-icon { border-color: rgba(37,52,42,.25);    color: var(--g600); }

.ls-pc-info-text { font-size: .76rem; font-weight: 300; line-height: 1.6; }
.theme-dark  .ls-pc-info-text { color: rgba(255,255,255,.45); }
.theme-light .ls-pc-info-text { color: var(--g600); }

/* ── Summary card ── */
.ls-pc-summary-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; margin: 0 auto 1.25rem;
}
.theme-dark  .ls-pc-summary-icon { background: var(--g400); }
.theme-light .ls-pc-summary-icon { background: var(--g800); }

.ls-pc-summary-headline {
  font-family: var(--display);
  font-size: 1.75rem; font-weight: 600; text-align: center; line-height: 1.2; margin-bottom: 1.25rem;
}
.theme-dark  .ls-pc-summary-headline { color: white; }
.theme-light .ls-pc-summary-headline { color: var(--g950); }

.ls-pc-summary-divider { height: 1px; margin-bottom: 1.5rem; }
.theme-dark  .ls-pc-summary-divider { background: rgba(255,255,255,.1); }
.theme-light .ls-pc-summary-divider { background: rgba(37,52,42,.1); }

.ls-pc-summary-rows { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.25rem; }

.ls-pc-summary-row { display: flex; align-items: center; gap: .875rem; padding: .75rem 0; }

.ls-pc-summary-row-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.theme-dark  .ls-pc-summary-row-icon { background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); }
.theme-light .ls-pc-summary-row-icon { background: rgba(37,52,42,.08);    color: var(--g600); }

.ls-pc-summary-row-text { flex: 1; }
.ls-pc-summary-row-title { font-size: .82rem; font-weight: 400; line-height: 1.3; }
.theme-dark  .ls-pc-summary-row-title { color: rgba(255,255,255,.75); }
.theme-light .ls-pc-summary-row-title { color: var(--g800); }

.ls-pc-summary-row-price { font-size: 1.1rem; font-weight: 600; white-space: nowrap; }
.theme-dark  .ls-pc-summary-row-price { color: white; }
.theme-light .ls-pc-summary-row-price { color: var(--g950); }

.ls-pc-summary-row-unit { font-size: .72rem; font-weight: 300; display: block; text-align: right; }
.theme-dark  .ls-pc-summary-row-unit { color: rgba(255,255,255,.45); }
.theme-light .ls-pc-summary-row-unit { color: var(--g400); }

.ls-pc-summary-plus { text-align: center; font-size: 1rem; font-weight: 300; padding: .1rem 0; }
.theme-dark  .ls-pc-summary-plus { color: rgba(255,255,255,.3); }
.theme-light .ls-pc-summary-plus { color: var(--g400); }

.ls-pc-summary-footer {
  font-size: .8rem; font-weight: 300; text-align: center; line-height: 1.65;
  border-top: 1px solid; padding-top: 1.25rem; margin-top: auto;
}
.theme-dark  .ls-pc-summary-footer { color: rgba(255,255,255,.45); border-top-color: rgba(255,255,255,.08); }
.theme-light .ls-pc-summary-footer { color: var(--g600);           border-top-color: rgba(37,52,42,.08); }

/* ── Bottom strip ── */
.ls-pricing-strip {
  margin-top: 3.5rem; padding: 1.75rem 8%; margin-bottom: 3rem; border-radius: 8px;
  display: grid; grid-template-columns: auto 1px repeat(3,1fr);
  gap: 0 1.5rem; align-items: center;
}
.theme-dark  .ls-pricing-strip { background: var(--cream); }
.theme-light .ls-pricing-strip { background: var(--g950); }

.ls-pricing-strip-divider { width: 1px; height: 44px; }
.theme-dark  .ls-pricing-strip-divider { background: var(--cream-dark); }
.theme-light .ls-pricing-strip-divider { background: rgba(255,255,255,.15); }

.ls-pricing-strip-brand { display: flex; align-items: center; gap: .875rem; padding-right: 1.5rem; }
.ls-pricing-strip-brand-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.theme-dark  .ls-pricing-strip-brand-icon { background: var(--g950); color: var(--gold-light); }
.theme-light .ls-pricing-strip-brand-icon { background: white;  color: var(--gold); }

.ls-pricing-strip-brand-label {
  font-size: .9rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.theme-dark  .ls-pricing-strip-brand-label { color: var(--g950); }
.theme-light .ls-pricing-strip-brand-label { color: white; }

.ls-pricing-strip-item {
  display: flex; align-items: flex-start; gap: .5rem;
  padding: 0 1rem; border-left: 1px solid;
}
.theme-dark  .ls-pricing-strip-item { border-left-color: var(--cream-dark); }
.theme-light .ls-pricing-strip-item { border-left-color: rgba(255,255,255,.15); }

.ls-pricing-strip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.theme-dark  .ls-pricing-strip-icon { color: var(--g600); }
.theme-light .ls-pricing-strip-icon { color: var(--gold); }

.ls-pricing-strip-title { font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
.theme-dark  .ls-pricing-strip-title { color: var(--g950); }
.theme-light .ls-pricing-strip-title { color: white; }

.ls-pricing-strip-sub { font-size: .8rem; font-weight: 300; line-height: 1.45; }
.theme-dark  .ls-pricing-strip-sub { color: var(--g600); }
.theme-light .ls-pricing-strip-sub { color: rgba(255,255,255,.6); }

@media (max-width: 1100px) {
  .ls-pricing-grid { grid-template-columns: 2fr auto 1fr auto 1fr; }
}
@media (max-width: 900px) {
  .ls-pricing-grid { grid-template-columns: 1fr; }
  .ls-pricing-grid .ls-pc { height: auto; }
  .ls-pricing-connector { padding: .5rem 0; font-size: 1.25rem; }
  .ls-pricing-strip { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ls-pricing-strip-divider { display: none; }
  .ls-pricing-strip-item { border-left: none; }
}

/* ══════════════════════════════════════════════════════════════
   APP SHOWCASE SECTION
   Solid bg, floor image bottom full-width, device anchored bottom-right
   ══════════════════════════════════════════════════════════════ */

.ls-app-showcase {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.ls-app-showcase.theme-light { background: var(--cream); }
.ls-app-showcase.theme-dark  { background: var(--g950); }

/* ── Floor/table image — full width, anchored to bottom ── */
.ls-app-showcase-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 15%;
  z-index: 1;
  pointer-events: none;
}

.ls-app-showcase-floor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Device image — anchored bottom-right ── */
.ls-app-showcase-devices {
  position: absolute;
  bottom: 5%;
  right: 0%;
  height: 80%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.ls-app-showcase-devices img {
  height: 100%;
  width: auto;
  max-width: 70vw;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* image-left flips device to left side */
.ls-app-showcase.image-left .ls-app-showcase-devices {
  right: auto;
  left: 3%;
}

/* ── Text content — normal flow, left, z-index above floor ── */
.ls-app-showcase-inner {
  position: relative;
  z-index: 3;
  padding: 10% 1rem 1.5rem 10%;
  max-width: 800px;
  width: 100%;
}

/* image-left pushes text right */
.ls-app-showcase.image-left .ls-app-showcase-inner {
  margin-left: auto;
  margin-right: 0;
  padding-left: 5%;
  padding-right: 1.5rem;
}

/* ── Tag ── */
.ls-app-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.theme-light .ls-app-tag { color: var(--gold); }
.theme-dark  .ls-app-tag { color: var(--gold-light); }

/* ── Headline ── */
.ls-app-headline {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.theme-light .ls-app-headline { color: var(--g950); }
.theme-dark  .ls-app-headline { color: white; }

.ls-app-headline em { font-style: italic; font-weight: 500; }
.theme-light .ls-app-headline em { color: var(--g600); }
.theme-dark  .ls-app-headline em { color: var(--gold-light); }

/* ── Body ── */
.ls-app-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.theme-light .ls-app-body { color: var(--g600); }
.theme-dark  .ls-app-body { color: rgba(255,255,255,0.65); }

/* ── Checkmark bullets ── */
.ls-app-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ls-app-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
}
.theme-light .ls-app-bullet { color: var(--g950); }
.theme-dark  .ls-app-bullet { color: rgba(255,255,255,0.85); }

.ls-app-bullet-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.theme-light .ls-app-bullet-check { background: var(--g800); color: white; }
.theme-dark  .ls-app-bullet-check { background: rgba(255,255,255,0.15); color: var(--gold-light); }

.ls-app-bullet-check svg {
  width: 11px; height: 11px;
  stroke: currentColor; stroke-width: 2.5; fill: none;
}

/* ── App store badges ── */
.ls-app-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.ls-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 130px;
}
.theme-light .ls-app-badge { background: var(--g950); color: white; }
.theme-light .ls-app-badge:hover { background: var(--g800); }
.theme-dark  .ls-app-badge { background: white; color: var(--g950); }
.theme-dark  .ls-app-badge:hover { background: var(--cream); }

.ls-app-badge-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; }
.ls-app-badge-text { display: flex; flex-direction: column; }
.ls-app-badge-sub  { font-size: 0.6rem; font-weight: 400; opacity: 0.7; line-height: 1; }
.ls-app-badge-main { font-size: 0.78rem; font-weight: 600; line-height: 1.2; }

/* ── CTA button ── */
.ls-app-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.theme-light .ls-app-cta { background: var(--g800); color: white; }
.theme-light .ls-app-cta:hover { background: var(--g950); }
.theme-dark  .ls-app-cta { background: var(--gold); color: white; }
.theme-dark  .ls-app-cta:hover { background: var(--gold-light); color: var(--g950); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ls-app-showcase { min-height: 500px; }
  .ls-app-showcase-devices { height: 80%; right: 2%; }
  .ls-app-showcase-inner { max-width: 55%; }
}

@media (max-width: 600px) {
  .ls-app-showcase { min-height: auto; padding-bottom: 55vw; }
  .ls-app-showcase-devices { height: 55vw; right: 0; left: 0; margin: 0 auto; }
  .ls-app-showcase-inner { max-width: 100%; padding: 3rem 1.5rem 1.5rem; }
}

/* ── Coming Soon ribbon ──────────────────────────────────────── */
.ls-coming-soon-ribbon {
  position: absolute;
  top: 18px;
  right: -26px;
  width: 100px;
  text-align: center;
  background: #bd9965;
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 0;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  font-family: var(--body);
}

/* ── Coming Soon ribbon ─────────────────────────────────────── */
.ls-coming-soon-ribbon {
  position: absolute;
  top: 16px;
  right: -28px;
  width: 108px;
  text-align: center;
  background: var(--gold);
  color: white;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 0;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   ECOSYSTEM MAP SECTION
   ══════════════════════════════════════════════════════════════ */

.ls-eco-section { background: var(--cream); }

.ls-eco-header { background: var(--g950); padding: 2rem; text-align: center; }
.ls-eco-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block;
}
.ls-eco-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500; color: white;
  font-family: var(--display); line-height: 1.2; margin-bottom: .75rem;
}
.ls-eco-title em { font-style: italic; color: var(--gold-light); }
.ls-eco-sub {
  font-size: 1rem; color: rgba(255,255,255,.55);
  font-weight: 300; line-height: 1.75; max-width: 560px; margin: 0 auto;
}
  max-width: 560px; margin: 0 auto;
}

.ls-eco-stage {
  position: relative !important; width: 100%; background: var(--cream); overflow: hidden; min-height: 530px;
}
.ls-eco-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}

.ls-eco-card {
  position: absolute; cursor: pointer; overflow: hidden; z-index: 3;
  transition:
    left .65s cubic-bezier(.4,0,.2,1), top .65s cubic-bezier(.4,0,.2,1),
    width .6s cubic-bezier(.4,0,.2,1), height .6s cubic-bezier(.4,0,.2,1),
    border-radius .45s ease, opacity .3s ease;
}
.ls-eco-card:hover { filter: brightness(1.08); }
.ls-eco-card-body { padding: 16px 14px 10px; }
.ls-eco-card-icon { font-size: 28px; margin-bottom: 12px; display: block; line-height: 1; }
.ls-eco-card-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 10px; line-height: 1.3;
}
.ls-eco-card-items { display: flex; flex-direction: column; gap: 6px; }
.ls-eco-card-item {
  font-size: 11px; display: flex; gap: 6px;
  align-items: flex-start; line-height: 1.45; opacity: .9;
}
.ls-eco-card-item::before { content: '•'; flex-shrink: 0; font-size: 9px; margin-top: 3px; }

.ls-eco-card-photo {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: height .6s cubic-bezier(.4,0,.2,1);
  background-size: cover; background-position: center center; background-repeat: no-repeat;
}
.ls-eco-card-photo-icon { font-size: 52px; opacity: .09; }

.ls-eco-connector { position: absolute; z-index: 6; line-height: 0; transition: opacity .35s ease; }
.ls-eco-conn-label {
  font-family: var(--body); font-size: 10px; fill: var(--g950);
  text-anchor: middle; dominant-baseline: middle; font-weight: 700;
}

.ls-eco-hint {
  font-size: 10px; color: rgba(0,0,0,.28); text-align: center;
  padding: .85rem; letter-spacing: .04em; background: var(--cream);
}

.ls-eco-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--g950); gap: 1px;
}
.ls-eco-strip-item { background: #1d2e25; padding: 1.25rem; display: flex; flex-direction: column; gap: 6px; }
.ls-eco-strip-icon { font-size: 18px; color: var(--gold); }
.ls-eco-strip-title {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-light);
}
.ls-eco-strip-sub { font-size: 11px; color: rgba(255,255,255,.42); font-weight: 300; line-height: 1.5; }

@media (max-width: 768px) {
  .ls-eco-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   SHOWCASE LIST SECTION
   ══════════════════════════════════════════════════════════════ */

.ls-showcase.theme-light { background: var(--cream); }
.ls-showcase.theme-dark  { background: var(--g950); }

.ls-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

/* Swap sides when image is on the right */
.ls-showcase-grid.image-right .ls-showcase-image-col  { order: 2; }
.ls-showcase-grid.image-right .ls-showcase-content-col { order: 1; }

/* ── Image column ── */
.ls-showcase-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.ls-showcase-image-col img {
  max-width: 100%;
  max-height: 580px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(37,52,42,0.13));
}

.ls-showcase-img-placeholder {
  width: 80%;
  aspect-ratio: 4/3;
  background: rgba(0,0,0,.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0,0,0,.15);
}

/* ── Content column ── */
.ls-showcase-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3.5rem;
}

.ls-showcase-section-tag {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.theme-light .ls-showcase-section-tag { color: var(--gold); }
.theme-dark  .ls-showcase-section-tag { color: var(--gold-light); }

.ls-showcase-section-headline {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.theme-light .ls-showcase-section-headline { color: var(--g950); }
.theme-dark  .ls-showcase-section-headline { color: white; }

/* ── Items ── */
.ls-showcase-items {
  display: flex;
  flex-direction: column;
}

.ls-showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
}

.ls-showcase-item:first-child { padding-top: 0; }
.ls-showcase-item:last-child  { padding-bottom: 0; }

.ls-showcase-item + .ls-showcase-item {
  border-top: 1px solid;
}
.theme-light .ls-showcase-item + .ls-showcase-item { border-top-color: rgba(37,52,42,.09); }
.theme-dark  .ls-showcase-item + .ls-showcase-item { border-top-color: rgba(255,255,255,.08); }

/* Number badge */
.ls-showcase-num {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 3px;
}
.theme-light .ls-showcase-num {
  background: rgba(37,52,42,.07);
  color: var(--g800);
}
.theme-dark .ls-showcase-num {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
}

.ls-showcase-item-content { flex: 1; }

.ls-showcase-item-title {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.625rem;
}
.theme-light .ls-showcase-item-title { color: var(--g950); }
.theme-dark  .ls-showcase-item-title { color: white; }

.ls-showcase-item-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.875rem;
}
.theme-light .ls-showcase-item-body { color: var(--g600); }
.theme-dark  .ls-showcase-item-body { color: rgba(255,255,255,.58); }

.ls-showcase-vorteile-label {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.theme-light .ls-showcase-vorteile-label { color: var(--g400); }
.theme-dark  .ls-showcase-vorteile-label { color: rgba(255,255,255,.3); }

.ls-showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ls-showcase-bullets li {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.ls-showcase-bullets li::before {
  content: '·';
  font-weight: 700;
  flex-shrink: 0;
}
.theme-light .ls-showcase-bullets li         { color: var(--g600); }
.theme-dark  .ls-showcase-bullets li         { color: rgba(255,255,255,.55); }
.theme-light .ls-showcase-bullets li::before { color: var(--g400); }
.theme-dark  .ls-showcase-bullets li::before { color: rgba(255,255,255,.3); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ls-showcase-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ls-showcase-image-col  { order: 1 !important; padding: 3rem 2rem; min-height: 50vw; }
  .ls-showcase-content-col { order: 2 !important; padding: 2.5rem 1.5rem; }
  .ls-showcase-image-col img { max-height: 400px; }
}

/* Features grid — always 3 columns, unlimited rows */
.ls-features-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .ls-features-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .ls-features-card-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — VISUAL STEPS
   ══════════════════════════════════════════════════════════════ */

.ls-vsteps { padding: 5rem 5%; }
.ls-vsteps.theme-light { background: var(--cream); }
.ls-vsteps.theme-dark  { background: var(--g950); }

/* ── Header ── */
.ls-vsteps-tag {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.theme-light .ls-vsteps-tag { color: var(--gold); }
.theme-dark  .ls-vsteps-tag { color: var(--gold-light); }

.ls-vsteps-headline {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 4rem;
}
.theme-light .ls-vsteps-headline { color: var(--g950); }
.theme-dark  .ls-vsteps-headline { color: white; }

.ls-vsteps-headline em {
  font-style: italic;
  font-weight: 400;
}
.theme-light .ls-vsteps-headline em { color: var(--g600); }
.theme-dark  .ls-vsteps-headline em { color: var(--gold-light); }

/* ── Steps row ── */
.ls-vsteps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

/* Dashed connector lines between icon circles */
.ls-vsteps-row::before {
  content: '';
  position: absolute;
  top: 52px; /* center of icon circle */
  left: calc(50% / 3 + 52px);
  right: calc(50% / 3 + 52px);
  height: 1px;
  
  z-index: 0;
  pointer-events: none;
}
.theme-light .ls-vsteps-row::before { border-top-color: rgba(37,52,42,.18); }
.theme-dark  .ls-vsteps-row::before { border-top-color: rgba(255,255,255,.15); }

/* Individual connector (between each step pair) */
.ls-vstep { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }

/* ── Icon circle ── */
.ls-vstep-icon {
  width: 104px; height: 104px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.theme-light .ls-vstep-icon { background: rgba(37,52,42,.08);  color: var(--g700, var(--g800)); }
.theme-dark  .ls-vstep-icon { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); }

/* ── Number badge ── */
.ls-vstep-number {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
}
.theme-light .ls-vstep-number { color: var(--g600); background: rgba(37,52,42,.07); }
.theme-dark  .ls-vstep-number { color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }

/* ── Title ── */
.ls-vstep-title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.625rem;
  line-height: 1.25;
}
.theme-light .ls-vstep-title { color: var(--g950); }
.theme-dark  .ls-vstep-title { color: white; }

/* ── Body ── */
.ls-vstep-body {
  font-size: 0.875rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.75;
  max-width: 240px;
}
.theme-light .ls-vstep-body { color: var(--g600); }
.theme-dark  .ls-vstep-body { color: rgba(255,255,255,.55); }

/* ── Responsive ── */
@media (max-width: 700px) {
  .ls-vsteps-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 360px;
  }
  .ls-vsteps-row::before { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   PRICING CARDS SECTION
   ══════════════════════════════════════════════════════════════ */

.ls-pcards { padding: 5rem 5%; }
.ls-pcards.theme-light { background: var(--cream); }
.ls-pcards.theme-dark  { background: var(--g950); }

/* ── Header ── */
.ls-pcards-tag {
  display: block; text-align: center;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.theme-light .ls-pcards-tag { color: var(--gold); }
.theme-dark  .ls-pcards-tag { color: var(--gold-light); }

.ls-pcards-headline {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500; text-align: center;
  line-height: 1.2; margin-bottom: 1rem;
}
.theme-light .ls-pcards-headline { color: var(--g950); }
.theme-dark  .ls-pcards-headline { color: white; }
.ls-pcards-headline em { font-style: italic; font-weight: 400; }
.theme-light .ls-pcards-headline em { color: var(--g600); }
.theme-dark  .ls-pcards-headline em { color: var(--gold-light); }

.ls-pcards-body {
  text-align: center; font-size: 1rem;
  font-weight: 300; line-height: 1.8;
  max-width: 650px; margin: 0 auto 3.5rem;
  min-width: 650px; margin: 0 auto 3.5rem;
}
.theme-light .ls-pcards-body { color: var(--g600); }
.theme-dark  .ls-pcards-body { color: rgba(255,255,255,.55); }

/* ── Cards row — centered, not full width ── */
.ls-pcards-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Single card ── */
.ls-pcard {
  flex: 0 0 360px;
  max-width: 560px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ls-pcard:hover {
  transform: translateY(-4px);
}

/* Default card — beige/cream */
.theme-light .ls-pcard {
  background: white;
  border: 1px solid rgba(37,52,42,.1);
  box-shadow: 0 4px 24px rgba(37,52,42,.07);
}
.theme-dark .ls-pcard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

/* Highlighted card — dark green */
.ls-pcard--highlight {
  background: var(--g800) !important;
  border-color: var(--g800) !important;
  box-shadow: 0 8px 40px rgba(37,52,42,.25) !important;
}

/* ── Card inner padding ── */
.ls-pcard-inner {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Plan tag (Empfohlen etc) ── */
.ls-pcard-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 20px;
  margin-bottom: 1rem; align-self: flex-start;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-tag {
  background: rgba(37,52,42,.08); color: var(--g800);
}
.ls-pcard--highlight .ls-pcard-tag {
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.85);
}

/* ── Plan name ── */
.ls-pcard-name {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 600;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-name { color: var(--g950); }
.theme-dark .ls-pcard:not(.ls-pcard--highlight) .ls-pcard-name { color: white; }
.ls-pcard--highlight .ls-pcard-name { color: white; }

/* ── Divider ── */
.ls-pcard-divider {
  height: 1px; margin-bottom: 1.5rem;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-divider { background: rgba(37,52,42,.1); }
.ls-pcard--highlight .ls-pcard-divider { background: rgba(255,255,255,.15); }

/* ── Feature list ── */
.ls-pcard-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0.75rem; margin-bottom: 2rem;
  flex: 1;
}

.ls-pcard-feature {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; font-weight: 300; line-height: 1.5;
}

.ls-pcard-feature-check {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; flex-shrink: 0; margin-top: 2px;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-feature-check {
  background: var(--g800); color: white;
}
.ls-pcard--highlight .ls-pcard-feature-check {
  background: rgba(255,255,255,.2); color: white;
}

.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-feature { color: var(--g600); }
.theme-dark .ls-pcard:not(.ls-pcard--highlight) .ls-pcard-feature { color: rgba(255,255,255,.6); }
.ls-pcard--highlight .ls-pcard-feature { color: rgba(255,255,255,.8); }

/* ── Price block ── */
.ls-pcard-price-block {
  border-top: 1px solid;
  padding-top: 1.5rem; margin-top: auto;
  text-align: center;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-price-block { border-top-color: rgba(37,52,42,.1); }
.ls-pcard--highlight .ls-pcard-price-block { border-top-color: rgba(255,255,255,.15); }

.ls-pcard-price {
  font-family: var(--display);
  font-size: 3rem; font-weight: 600;
  line-height: 1; margin-bottom: 0.25rem;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-price { color: var(--g950); }
.theme-dark .ls-pcard:not(.ls-pcard--highlight) .ls-pcard-price { color: white; }
.ls-pcard--highlight .ls-pcard-price { color: white; }

.ls-pcard-price-unit {
  font-size: 0.8rem; font-weight: 300; margin-bottom: 0.375rem;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-price-unit { color: var(--g600); }
.ls-pcard--highlight .ls-pcard-price-unit { color: rgba(255,255,255,.6); }

.ls-pcard-price-note {
  font-size: 0.72rem; font-weight: 300; margin-bottom: 1.25rem;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-price-note { color: var(--g400); }
.ls-pcard--highlight .ls-pcard-price-note { color: rgba(255,255,255,.45); }

/* ── CTA button ── */
.ls-pcard-btn {
  display: block; width: 100%;
  padding: 0.875rem 1rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500;
  text-align: center; text-decoration: none;
  transition: all .2s ease;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-btn {
  background: var(--g950); color: white;
}
.ls-pcard:not(.ls-pcard--highlight) .ls-pcard-btn:hover { background: var(--g800); }
.ls-pcard--highlight .ls-pcard-btn {
  background: white; color: var(--g950);
}
.ls-pcard--highlight .ls-pcard-btn:hover { background: var(--cream); }

@media (max-width: 700px) {
  .ls-pcard { flex: 0 0 100%; max-width: 360px; }
}

/* ── HERO ECOSYSTEM COMBINED ── */
.ls-he-section { background: var(--g950); }

.ls-he-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5% 2rem;
  gap: 2rem;
  align-items: center;
}

.ls-he-hero-left { display: flex; flex-direction: column; gap: 1rem; }

.ls-he-hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.ls-he-device-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  display: block;
}

.ls-he-bridge {
  background: var(--g950);
  text-align: center;
  padding: 2rem 5% 0;
}

/* Stage sits on cream, flows from dark top */
.ls-he-section .ls-eco-stage {
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  margin-top: 2rem;
}

.ls-he-section .ls-eco-hint { background: var(--cream); }

@media (max-width: 768px) {
  .ls-he-hero { grid-template-columns: 1fr; min-height: auto; }
  .ls-he-hero-right { display: none; }
}

/* ── HERO ECOSYSTEM — text styles (always dark theme) ── */
.ls-he-section .ls-hs-tag         { color: var(--g400); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.ls-he-section .ls-hs-headline    { color: #f1e8dc; font-family: var(--display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 500; line-height: 1.15; }
.ls-he-section .ls-hs-headline-em { color: var(--gold-light); font-style: italic; display: block; }
.ls-he-section .ls-hs-body        { color: rgba(255,255,255,0.65); font-size: 0.95rem; font-weight: 300; line-height: 1.8; }
.ls-he-section .ls-hs-ctas        { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.ls-he-section .ls-hs-cta-primary {
  display: inline-flex; align-items: center; padding: 0.75rem 1.5rem;
  background: var(--gold); color: var(--g950); border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s;
}
.ls-he-section .ls-hs-cta-primary:hover  { background: var(--gold-light); }
.ls-he-section .ls-hs-cta-secondary {
  display: inline-flex; align-items: center; padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8);
  border-radius: 8px; font-size: 0.875rem; font-weight: 300;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.ls-he-section .ls-hs-cta-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── PRICING TAGLINE ── */
.ls-pricing-tag {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── NAV AUTH LINKS ── */
.ls-nav-auth-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
.ls-nav-auth-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

/* dark theme */
.ls-nav--dark .ls-nav-auth-link {
  color: #f1e8dc;
}
.ls-nav--dark .ls-nav-auth-link:hover {
  background: #f1e8dc;
  color: var(--g950);
}

/* light theme */
.ls-nav--light .ls-nav-auth-link {
  color: var(--g950);
}
.ls-nav--light .ls-nav-auth-link:hover {
  background: var(--g950);
  color: #f1e8dc;
}
