/* ─── Landing Extra Sections ─────────────────────────────────────────────
   Prefix: ls-* (landing-sections) — no conflicts with design.css / admin
   ─────────────────────────────────────────────────────────────────────── */

.landing-sections {
  /* Brand blue — landing marketing palette */
  --ls-blue:       #2563eb;
  --ls-blue-2:     #2f6df6;
  --ls-blue-light: rgba(37, 99, 235, 0.10);
  --ls-blue-ring:  rgba(37, 99, 235, 0.28);
  /* Structural — inherited from design.css theme tokens */
  --ls-card:   var(--surface);
  --ls-card-2: var(--surface-2);
  --ls-border: var(--border);
  --ls-muted:  var(--text-2);
  --ls-shadow: 0 14px 34px rgba(19, 43, 92, 0.07);
  --ls-r:      18px;
}
[data-theme="dark"] .landing-sections,
.dark .landing-sections {
  --ls-blue:       #4f8cff;
  --ls-blue-light: rgba(79, 140, 255, 0.12);
  --ls-blue-ring:  rgba(79, 140, 255, 0.30);
  --ls-shadow:     0 14px 34px rgba(0, 0, 0, 0.25);
}

/* ── Layout helpers ── */
.ls-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
.ls-section {
  padding: 52px 0;
}
.ls-section--soft {
  background: var(--ls-card-2);
  border-top: 1px solid var(--ls-border);
  border-bottom: 1px solid var(--ls-border);
}
.ls-center { text-align: center; }

/* ── Eyebrow badge ── */
.ls-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--ls-blue-light);
  border: 1px solid var(--ls-blue-ring);
  color: var(--ls-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ls-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-top: 12px;
  color: var(--text);
}
.ls-section h3 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--text);
}

/* ── HOW IT WORKS ── */
.ls-steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 44px;
}
.ls-step-card {
  position: relative;
  min-height: 168px;
  padding: 32px 22px 24px;
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-r);
  background: var(--ls-card);
  box-shadow: var(--ls-shadow);
  text-align: center;
}
.ls-step-num {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ls-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.ls-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ls-blue-light);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--ls-blue);
}
.ls-icon-circle svg,
.ls-icon-box svg,
.ls-metric-icon svg,
.ls-small-icon svg,
.ls-security-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.ls-role-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}
.ls-step-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 7px;
}
.ls-step-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ls-muted);
}
.ls-dash {
  height: 2px;
  border-top: 2px dashed var(--ls-blue-ring);
}

/* ── BUSINESS TYPES ── */
.ls-biz-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.ls-biz-card {
  min-height: 110px;
  padding: 18px 10px 14px;
  border-radius: 14px;
  background: var(--ls-card);
  border: 1px solid var(--ls-border);
  box-shadow: var(--ls-shadow);
  text-align: center;
}
.ls-small-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  color: var(--ls-blue);
}
.ls-biz-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}

/* ── BENEFITS ── */
.ls-benefit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 52px;
  align-items: center;
}
.ls-benefit-text h3 {
  margin-top: 12px;
  max-width: 320px;
}
.ls-benefit-text p {
  margin-top: 18px;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ls-muted);
}
.ls-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ls-metric-card {
  min-height: 140px;
  padding: 22px 18px;
  border-radius: 16px;
  background: var(--ls-card);
  border: 1px solid var(--ls-border);
  box-shadow: var(--ls-shadow);
}
.ls-metric-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ls-blue);
  margin-bottom: 14px;
}
.ls-metric-card b {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 6px;
}
.ls-metric-card p {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ls-muted);
}

/* ── DASHBOARD MOCKUP ── */
.ls-dash-title {
  text-align: center;
  margin-bottom: 28px;
}
.ls-dash-title p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ls-muted);
}
.ls-mockup {
  width: min(900px, 100%);
  margin: 0 auto;
  height: 380px;
  border-radius: var(--ls-r);
  background: var(--ls-card);
  border: 1px solid var(--ls-border);
  box-shadow: var(--ls-shadow);
  display: grid;
  grid-template-columns: 152px 1fr 172px;
  overflow: hidden;
}
.ls-sidebar {
  background: #0f1117;
  color: #fff;
  padding: 24px 18px;
  flex-shrink: 0;
}
.ls-sidebar-logo {
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.ls-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 34px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 4px;
}
.ls-nav-item--active {
  background: var(--ls-blue);
  color: #fff;
}
.ls-nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
}
.ls-cal-area {
  padding: 24px 20px;
  border-right: 1px solid var(--ls-border);
  overflow: hidden;
}
.ls-mockup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ls-mockup-head h4 {
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
}
.ls-mockup-controls {
  display: flex;
  gap: 6px;
}
.ls-ctrl {
  height: 26px;
  padding: 0 10px;
  border-radius: 7px;
  border: 1px solid var(--ls-border);
  background: var(--ls-card);
  font-size: 10px;
  color: var(--ls-muted);
  white-space: nowrap;
}
.ls-cal-scroll { overflow-x: auto; }
.ls-cal-grid {
  display: grid;
  grid-template-columns: 48px repeat(6, 1fr);
  grid-template-rows: 26px repeat(6, 38px);
  border: 1px solid #edf0f6;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-width: 460px;
}
.ls-cell {
  border-right: 1px solid #edf0f6;
  border-bottom: 1px solid #edf0f6;
  font-size: 9px;
  color: #9098aa;
  padding: 6px;
}
.ls-cell:nth-child(7n) { border-right: 0; }
.ls-event {
  position: absolute;
  width: 78px;
  height: 44px;
  border-radius: 7px;
  padding: 6px 8px;
  font-size: 9px;
  line-height: 1.3;
  border-left: 3px solid currentColor;
}
.ls-e1 { left: 100px; top: 66px;  background: #eef1ff; color: #6b6ee8; }
.ls-e2 { left: 224px; top: 104px; background: #ecf8ef; color: #31a65a; }
.ls-e3 { left: 346px; top: 84px;  background: #eefbff; color: #37a8c6; }
.ls-e4 { left: 440px; top: 178px; background: #f2eefc; color: #7b61d1; }
.ls-e5 { left: 155px; top: 168px; background: #fff1e9; color: #e28a4b; }
.ls-details {
  padding: 22px 18px;
  background: var(--ls-card);
}
.ls-top-icons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 32px;
}
.ls-round {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ls-card-2);
  border: 1px solid var(--ls-border);
}
.ls-apt-card {
  border: 1px solid var(--ls-border);
  border-radius: 12px;
  padding: 14px;
  font-size: 11px;
  background: var(--ls-card);
}
.ls-apt-card h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.ls-apt-row {
  display: flex;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--ls-muted);
  font-size: 11px;
}
.ls-apt-status {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #20a456;
  font-weight: 800;
  font-size: 10px;
}
.ls-apt-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #20c36b;
}

/* ── BOOKING PAGE ── */
.ls-booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.ls-booking-text h3 { margin-top: 12px; max-width: 460px; }
.ls-booking-text p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ls-muted);
  max-width: 470px;
}
.ls-domain-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ls-blue);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}
.ls-phone-wrap { display: flex; justify-content: center; }
.ls-phone {
  width: 200px;
  height: 370px;
  border-radius: 30px 30px 0 0;
  border: 7px solid #171a20;
  border-bottom: 0;
  background: #fff;
  box-shadow: 0 24px 55px rgba(0,0,0,0.14);
  padding: 20px 14px 22px;
  position: relative;
}
.ls-phone::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 14px;
  background: #171a20;
  border-radius: 0 0 10px 10px;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.ls-phone h4 {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  color: #111;
  margin: 16px 0 14px;
}
.ls-form-label {
  font-size: 10px;
  font-weight: 800;
  color: #333846;
  margin-bottom: 7px;
}
.ls-chips { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 13px; }
.ls-chip {
  height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e9f2;
  border-radius: 999px;
  font-size: 9px;
  color: #495064;
  background: #fff;
}
.ls-masters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 13px;
}
.ls-master { text-align: center; font-size: 9px; font-weight: 700; color: #333; }
.ls-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7e5ff, #f6d6df);
  margin: 0 auto 5px;
}
.ls-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.ls-time {
  height: 26px;
  border-radius: 6px;
  border: 1px solid #e5e9f2;
  display: grid;
  place-items: center;
  font-size: 9px;
  color: #495064;
  background: #fff;
}
.ls-time--active { background: var(--ls-blue); color: #fff; border-color: var(--ls-blue); }
.ls-book-btn {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: var(--ls-blue);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  cursor: pointer;
}

/* ── ROLES AND SECURITY ── */
.ls-access-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.72fr;
  gap: 26px;
  align-items: stretch;
}
.ls-access-text h3 { margin-top: 12px; }
.ls-access-text p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ls-muted);
  max-width: 280px;
}
.ls-role-table {
  background: var(--ls-card);
  border: 1px solid var(--ls-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ls-shadow);
}
.ls-role-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ls-border);
}
.ls-role-row:last-child { border-bottom: 0; }
.ls-role-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 12px;
  color: var(--text);
  white-space: nowrap;
  min-width: 96px;
}
.ls-role-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ls-blue);
  flex-shrink: 0;
}
.ls-role-desc { flex: 1; font-size: 12px; color: var(--ls-muted); line-height: 1.45; }
.ls-security-card {
  border: 1px solid var(--ls-border);
  background: var(--ls-card);
  border-radius: var(--ls-r);
  box-shadow: var(--ls-shadow);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ls-security-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ls-blue-light);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--ls-blue);
}
.ls-security-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}
.ls-security-card p { font-size: 12px; line-height: 1.5; color: var(--ls-muted); }

/* ── PRICING ── */
.ls-pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.ls-pricing-title h3 { margin-top: 12px; }
.ls-pricing-title p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ls-muted);
}
.ls-price-card {
  border: 1px solid var(--ls-border);
  background: var(--ls-card);
  border-radius: var(--ls-r);
  box-shadow: var(--ls-shadow);
  padding: 26px;
}
.ls-price-card--muted { opacity: 0.60; }
.ls-price-card h4 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.ls-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 16px;
}
.ls-price b { color: var(--ls-blue); font-size: 32px; line-height: 1; letter-spacing: -0.04em; }
.ls-price b.soon { color: var(--text); }
.ls-price span { color: var(--ls-muted); font-size: 12px; margin-bottom: 3px; }
.ls-checks {
  list-style: none;
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
  padding: 0;
}
.ls-checks li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ls-checks li::before { content: "✓"; color: var(--ls-blue); font-weight: 900; }
.ls-btn {
  height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ls-blue);
  background: var(--ls-blue);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ls-btn:hover { opacity: 0.88; }
.ls-btn--full { width: 100%; }
.ls-btn--secondary { background: transparent; color: var(--ls-blue); }
[data-theme="dark"] .ls-btn--secondary,
.dark .ls-btn--secondary { color: var(--ls-blue); }

.ls-role-row:nth-child(1) .ls-role-icon { color: var(--ls-blue); }
.ls-role-row:nth-child(2) .ls-role-icon { color: #059669; }
.ls-role-row:nth-child(3) .ls-role-icon { color: #d97706; }

/* ── FAQ ── */
.ls-faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.55fr;
  gap: 44px;
  align-items: start;
}
.ls-faq-title h3 { margin-top: 12px; }
.ls-faq-list { display: grid; gap: 8px; }
.ls-faq-item {
  height: 44px;
  border: 1px solid var(--ls-border);
  border-radius: 9px;
  background: var(--ls-card);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s;
}
.ls-faq-item:hover { background: var(--ls-card-2); }
.ls-faq-item span:last-child { color: var(--ls-muted); font-size: 16px; }

/* ── FINAL CTA ── */
.ls-cta-wrap {
  padding: 20px 24px 56px;
}
.ls-cta {
  width: min(1120px, 100%);
  margin: 0 auto;
  min-height: 144px;
  border-radius: var(--ls-r);
  background: linear-gradient(135deg, #1763f7 0%, #4a92ff 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 52px;
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.24);
}
.ls-cta h3 { color: #fff; margin-bottom: 8px; font-size: clamp(20px, 2.5vw, 26px); }
.ls-cta p { color: rgba(255,255,255,0.82); max-width: 420px; font-size: 14px; line-height: 1.6; }
.ls-cta-actions { display: flex; gap: 14px; align-items: center; flex-shrink: 0; }
.ls-cta .ls-btn {
  min-width: 190px;
  background: #fff;
  color: var(--ls-blue);
  border-color: #fff;
}
.ls-cta .ls-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .ls-steps { grid-template-columns: 1fr; gap: 16px; }
  .ls-dash { display: none; }
  .ls-biz-grid { grid-template-columns: repeat(4, 1fr); }
  .ls-metrics { grid-template-columns: repeat(2, 1fr); }
  .ls-benefit-layout,
  .ls-booking-layout,
  .ls-access-layout,
  .ls-pricing-layout,
  .ls-faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .ls-mockup { grid-template-columns: 120px 1fr; }
  .ls-details { display: none; }
  .ls-cta { grid-template-columns: 1fr; padding: 30px 32px; }
  .ls-cta-actions { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .ls-container { width: min(100% - 28px, 1120px); }
  .ls-section { padding: 36px 0; }
  .ls-biz-grid { grid-template-columns: repeat(2, 1fr); }
  .ls-metrics { grid-template-columns: 1fr 1fr; }
  .ls-mockup { height: auto; grid-template-columns: 1fr; }
  .ls-sidebar { display: none; }
  .ls-cal-area { padding: 18px; }
  .ls-phone-wrap { transform: scale(0.88); transform-origin: center top; }
  .ls-cta { width: 100%; padding: 26px 24px; }
  .ls-cta-actions { flex-direction: column; }
  .ls-cta .ls-btn { width: 100%; }
  .ls-pricing-layout { grid-template-columns: 1fr; }
  .ls-access-layout { grid-template-columns: 1fr; }
  .ls-faq-layout { grid-template-columns: 1fr; gap: 20px; }
}
