/* ============================================================
 * Landing page — aligned with the warehouse "v2" design system.
 * Tokens come from app.tokens.css (--app-bg, --app-primary, ...).
 * Mirrors the warehouse aesthetic: white sidebar, grey-gradient
 * pills, blue-gradient hero cards, yellow icon accents.
 * ============================================================ */

.landing-page {
  --landing-yellow: #f59f00;
  --landing-yellow-soft: #fff7e0;
  --landing-blue-gradient: linear-gradient(155deg, #0057d1 5%, #178de5 61%);
  --landing-pill-gradient: linear-gradient(#f2f2f2, #ffffff);
  --landing-pill-gradient-hover: linear-gradient(#eaeaea, #fafafa);
  --landing-radius-sm: var(--app-radius-sm);
  --landing-radius-md: var(--app-radius-md);
  --landing-shadow-soft: var(--app-shadow-soft);
  --landing-shadow-card: 0 4px 12px -6px rgba(8, 8, 8, 0.18),
    0 12px 20px -8px rgba(8, 8, 8, 0.06);
  --landing-shadow-blue: 0 12px 24px -16px rgba(0, 87, 209, 0.55),
    0 24px 40px -20px rgba(0, 87, 209, 0.35);
  --landing-section-pad: 96px;
  --landing-container-max: 1200px;
  --landing-nav-h: 72px;

  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: var(--app-text);
  background: var(--app-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.landing-page-body {
  margin: 0;
  background: var(--app-bg);
}

.landing-page * {
  box-sizing: border-box;
}

.landing-page a {
  color: var(--app-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.landing-page a:hover {
  color: var(--app-primary-strong);
  text-decoration: underline;
}
.landing-page a.landing-btn:hover,
.landing-page a.landing-nav-brand:hover,
.landing-page a.landing-nav-link:hover,
.landing-page a.landing-trust-logo:hover,
.landing-page a.landing-card-cta:hover {
  text-decoration: none;
}

.landing-container {
  width: 100%;
  max-width: var(--landing-container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.landing-container-narrow { max-width: 880px; }

/* ============================================================
 * NAVBAR — like the warehouse sidebar transposed horizontally
 * ============================================================ */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.landing-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--app-border);
  box-shadow: 0 4px 14px -10px rgba(8, 8, 8, 0.18);
}
.landing-nav-inner {
  height: var(--landing-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.landing-nav-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.landing-nav-brand img {
  height: 32px;
  width: auto;
  display: block;
}

.landing-nav-toggle {
  display: none;
  background: var(--landing-pill-gradient);
  border: 1px solid var(--app-border);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--app-text);
  cursor: pointer;
}
.landing-nav-toggle .ti { font-size: 22px; }

.landing-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}
.landing-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.landing-page .landing-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid transparent;
  color: var(--app-text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.landing-page .landing-nav-link:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(27, 28, 28, 0.08);
  color: #3f3f3f;
  text-decoration: none;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-nav-locale { position: relative; }
.landing-locale-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--landing-pill-gradient);
  border: 1px solid var(--app-border);
  border-radius: 999px;
  color: var(--app-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 6px -5px rgba(8, 8, 8, 0.2);
}
.landing-locale-toggle:hover { background: var(--landing-pill-gradient-hover); }

/* ============================================================
 * BUTTONS — warehouse pill style + primary blue
 * ============================================================ */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.landing-btn:hover { text-decoration: none; }
.landing-btn .ti { font-size: 18px; }

.landing-btn-lg {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
}
.landing-btn-block { width: 100%; }

.landing-page .landing-btn-primary {
  background: var(--landing-blue-gradient);
  color: #fff;
  box-shadow: 0 6px 16px -10px rgba(0, 87, 209, 0.6);
}
.landing-page .landing-btn-primary:hover {
  color: #fff;
  background: linear-gradient(155deg, #004cb8 5%, #1480d4 61%);
  box-shadow: 0 8px 18px -10px rgba(0, 87, 209, 0.7);
}

/* Pill = the warehouse "app-pill-btn / app-chip-btn" look */
.landing-page .landing-btn-pill {
  background: var(--landing-pill-gradient);
  color: var(--app-text);
  border-color: var(--app-border);
  box-shadow: 0 2px 6px -5px rgba(8, 8, 8, 0.2),
    inset 0 1px 0 1px #fff;
}
.landing-page .landing-btn-pill:hover {
  background: var(--landing-pill-gradient-hover);
  color: var(--app-text);
  border-color: rgba(27, 28, 28, 0.2);
}

.landing-page .landing-btn-dark {
  background: #1e1e1e;
  color: #fff;
}
.landing-page .landing-btn-dark:hover {
  background: #000;
  color: #fff;
}

.landing-page .landing-btn-on-accent {
  background: #fff;
  color: var(--app-primary-strong);
}
.landing-page .landing-btn-on-accent:hover {
  background: #f5f6f7;
  color: var(--app-primary-strong);
}

/* ============================================================
 * SECTIONS — generic
 * ============================================================ */
.landing-section {
  padding: var(--landing-section-pad) 0;
  background: var(--app-surface);
}
.landing-section-soft { background: var(--app-bg); }

.landing-section-header { margin-bottom: 48px; }
.landing-section-header-center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.landing-section-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--app-text);
}
.landing-section-lead {
  font-size: 18px;
  color: var(--app-text-muted);
  margin: 0;
  line-height: 1.55;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--app-text-muted);
  background: var(--landing-pill-gradient);
  border: 1px solid var(--app-border);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 12px;
  box-shadow: 0 2px 6px -5px rgba(8, 8, 8, 0.2);
}
.landing-eyebrow-yellow {
  color: #7a4f00;
  background: linear-gradient(var(--landing-yellow-soft), #fffbef);
  border-color: rgba(245, 159, 0, 0.25);
}
.landing-eyebrow-blue {
  color: var(--app-primary-strong);
  background: linear-gradient(#e8f1ff, #f5faff);
  border-color: rgba(37, 116, 234, 0.18);
}

.landing-grid { display: grid; gap: 24px; }
.landing-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.landing-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.landing-grid-tight { gap: 16px; }

/* ============================================================
 * 1. HERO — light bg, warehouse-style
 * ============================================================ */
.landing-hero {
  position: relative;
  padding: calc(var(--landing-nav-h) + 64px) 0 80px;
  background: var(--app-bg);
  background-image:
    radial-gradient(
      circle at 20% -10%,
      rgba(0, 87, 209, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 10%,
      rgba(245, 159, 0, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(rgba(27, 28, 28, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px;
  background-position: 0 0, 0 0, 0 0;
  overflow: hidden;
}
.landing-hero > * { position: relative; }

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.landing-hero-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--app-text);
  margin: 0 0 20px;
}

/* Yellow signature highlight on key words inside headings */
.landing-page .landing-highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}
.landing-page .landing-highlight::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 0.32em;
  background: var(--landing-yellow);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.85;
}
.landing-hero-lead {
  font-size: 18px;
  color: var(--app-text-muted);
  margin: 0 0 28px;
  max-width: 560px;
  line-height: 1.6;
}
.landing-hero-bullets {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--app-text);
}
.landing-hero-bullets .ti {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--landing-yellow);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
}
.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-hero-visual { display: flex; justify-content: flex-end; }
.landing-hero-screen {
  position: relative;
  border-radius: var(--landing-radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--app-border);
  box-shadow: var(--landing-shadow-card);
  width: 100%;
}
.landing-hero-screen img,
.landing-hero-screen .landing-hero-screen-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
 * 2. TRUST
 * ============================================================ */
.landing-trust {
  padding: 56px 0;
  background: var(--app-surface);
  border-top: 1px solid var(--app-border);
  border-bottom: 1px solid var(--app-border);
}
.landing-trust-inner { text-align: center; }
.landing-trust-lead {
  font-size: 14px;
  color: var(--app-text-muted);
  margin: 12px 0 24px;
}
.landing-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.landing-trust-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
  display: inline-flex;
}
.landing-trust-logo:hover { filter: grayscale(0); opacity: 1; }
.landing-trust-logo img {
  max-height: 40px;
  width: auto;
  display: block;
}

/* ============================================================
 * Cards — clean white surface with subtle border + soft shadow
 * ============================================================ */
.landing-card {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: var(--landing-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.landing-card:hover {
  border-color: rgba(27, 28, 28, 0.22);
  box-shadow: var(--landing-shadow-card);
}
.landing-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.landing-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--landing-yellow);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}
.landing-card-icon-blue {
  background: var(--landing-blue-gradient);
  color: #fff;
}
.landing-card-icon-dark {
  background: #1e1e1e;
  color: #fff;
}
.landing-card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--app-text);
  margin: 0;
}
.landing-card-text {
  color: var(--app-text-muted);
  margin: 0;
  font-size: 15px;
}
.landing-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--app-primary);
}
.landing-card-cta:hover { gap: 10px; }

.landing-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.landing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--app-text);
}
.landing-checklist .ti {
  color: var(--landing-yellow);
  margin-top: 2px;
  flex: 0 0 auto;
  font-size: 18px;
}

/* ============================================================
 * 4. FLOW (Mission → Task → Pack) — gradient blue dashboard cards
 * ============================================================ */
.landing-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}
.landing-flow-step {
  background: var(--landing-blue-gradient);
  border-radius: var(--landing-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  color: #fff;
  box-shadow: var(--landing-shadow-blue);
}
.landing-flow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}
.landing-flow-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -0.04em;
}
.landing-flow-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--landing-yellow);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
}
.landing-flow-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 4px 0 0;
  color: #fff;
  position: relative;
}
.landing-flow-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  position: relative;
}
.landing-flow-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0;
  list-style: none;
  width: 32px;
}
.landing-flow-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 18px;
  top: 50%;
  border-top: 2px dashed rgba(245, 159, 0, 0.5);
  transform: translateY(-50%);
}
.landing-flow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--landing-yellow);
  transform: translateY(-50%);
}

/* ============================================================
 * 5. SPLIT (Mobile / Web)
 * ============================================================ */
.landing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
}
.landing-split + .landing-split { border-top: 1px solid var(--app-border); }
.landing-split-reverse .landing-split-content { order: 1; }
.landing-split-reverse .landing-split-visual { order: 2; }
.landing-split-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--app-text);
  margin: 8px 0 12px;
}
.landing-split-lead {
  font-size: 17px;
  color: var(--app-text-muted);
  margin: 0 0 24px;
  max-width: 520px;
  line-height: 1.6;
}

.landing-feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.landing-feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.landing-feature-list h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--app-text);
}
.landing-feature-list p {
  font-size: 14px;
  color: var(--app-text-muted);
  margin: 0;
  line-height: 1.55;
}

.landing-feature-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--landing-yellow);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.landing-feature-tile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: var(--landing-radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.landing-feature-tile:hover {
  border-color: rgba(27, 28, 28, 0.22);
  box-shadow: var(--landing-shadow-card);
}
.landing-feature-tile h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--app-text);
}
.landing-feature-tile p {
  font-size: 13px;
  color: var(--app-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Mobile slideshow frame */
.landing-mobile-frame {
  position: relative;
  aspect-ratio: 450 / 900;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background: #0f172a;
  border: 4px solid #1e1e1e;
  box-shadow: 0 25px 60px -20px rgba(8, 8, 8, 0.4);
}
.landing-mobile-frame picture {
  position: absolute;
  inset: 0;
  display: block;
}
.landing-mobile-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.landing-mobile-frame img.landing-slide.active { opacity: 1; }

/* Web frame */
.landing-web-frame {
  border-radius: var(--landing-radius-md);
  overflow: hidden;
  border: 1px solid var(--app-border);
  background: #fff;
  box-shadow: var(--landing-shadow-card);
}
.landing-web-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
 * 7. PRICING
 * ============================================================ */
.landing-pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.landing-pricing-calc { padding: 32px; }
.landing-pricing-calc .landing-card-title { margin-bottom: 24px; }

.landing-range-row { margin-bottom: 28px; }
.landing-range-row:last-child { margin-bottom: 0; }
.landing-range-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.landing-range-head label {
  font-weight: 600;
  font-size: 14px;
  color: var(--app-text);
  margin: 0;
}
.landing-range-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.landing-range-price { font-size: 12px; color: var(--app-text-muted); }
.landing-range-input {
  width: 90px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 8px;
  border: 1px solid var(--app-border);
  border-radius: var(--landing-radius-sm);
  background: #fff;
  color: var(--app-text);
}
.landing-range-input:focus {
  outline: none;
  border-color: var(--app-primary);
  box-shadow: 0 0 0 3px rgba(37, 116, 234, 0.15);
}

.landing-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  outline: none;
}
.landing-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--app-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(0, 87, 209, 0.18);
  cursor: pointer;
}
.landing-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--app-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(0, 87, 209, 0.18);
  cursor: pointer;
}
.landing-range-scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--app-text-muted);
  margin-top: 6px;
}

.landing-pricing-advanced {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--app-border);
}
.landing-pricing-advanced summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--app-text-muted);
  margin-bottom: 16px;
  user-select: none;
}
.landing-pricing-advanced summary:hover { color: var(--app-text); }

.landing-pricing-summary {
  background: var(--landing-blue-gradient);
  color: #fff;
  border-radius: var(--landing-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--landing-shadow-blue);
}
.landing-pricing-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}
.landing-pricing-summary > * { position: relative; }
.landing-pricing-summary-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}
.landing-pricing-lines {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.landing-pricing-lines > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.landing-pricing-lines dt {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-weight: 400;
}
.landing-pricing-lines dd {
  margin: 0;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  flex: 0 0 auto;
}
.landing-pricing-lines dt {
  min-width: 0;
}
.landing-pricing-total {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.landing-pricing-total-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}
.landing-pricing-total-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.landing-pricing-per {
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin: 4px 0 24px;
}

/* ============================================================
 * 8. TESTIMONIAL
 * ============================================================ */
.landing-testimonial {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: var(--landing-radius-md);
  padding: 48px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.landing-testimonial-mark {
  font-size: 40px;
  color: var(--landing-yellow);
  display: inline-block;
  margin-bottom: 8px;
}
.landing-testimonial-quote {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--app-text);
  margin: 0 0 28px;
  line-height: 1.5;
}
.landing-testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.landing-testimonial-avatar img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.landing-testimonial-name {
  font-weight: 600;
  color: var(--app-text);
  font-size: 15px;
  text-align: left;
}
.landing-testimonial-role {
  color: var(--app-text-muted);
  font-size: 13px;
  text-align: left;
}

/* ============================================================
 * 9. FAQ
 * ============================================================ */
.landing-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing-faq-item {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: var(--landing-radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.landing-faq-item[open] {
  border-color: rgba(27, 28, 28, 0.22);
  box-shadow: var(--landing-shadow-card);
}
.landing-faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--app-text);
  user-select: none;
}
.landing-faq-question::-webkit-details-marker { display: none; }
.landing-faq-question .ti {
  font-size: 22px;
  color: var(--landing-yellow);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.landing-faq-item[open] .landing-faq-question .ti {
  transform: rotate(180deg);
}
.landing-faq-answer {
  padding: 0 22px 22px;
  color: var(--app-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
 * 10. FORM CARD
 * ============================================================ */
.landing-form-card { padding: 32px; }
.landing-form-card .form-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--app-text);
}
.landing-form-card .form-control,
.landing-form-card .form-select {
  border-radius: var(--landing-radius-sm);
  border-color: var(--app-border);
  background: #fff;
}
.landing-form-card .form-control:focus,
.landing-form-card .form-select:focus {
  border-color: var(--app-primary);
  box-shadow: 0 0 0 3px rgba(37, 116, 234, 0.15);
}

/* ============================================================
 * FOOTER
 * ============================================================ */
.landing-footer {
  padding: 32px 0;
  border-top: 1px solid var(--app-border);
  background: var(--app-surface);
}
.landing-footer-inner { text-align: center; }
.landing-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 24px;
  font-size: 14px;
  color: var(--app-text-muted);
}
.landing-footer-links li { display: inline-flex; align-items: center; }
.landing-footer-links li + li::before {
  content: "·";
  margin-right: 24px;
  color: var(--app-border);
}
.landing-footer-links a { color: var(--app-text-muted); }
.landing-footer-links a:hover { color: var(--app-text); }

/* ============================================================
 * RESPONSIVE
 * ============================================================ */
@media (max-width: 991px) {
  .landing-page { --landing-section-pad: 72px; }
  .landing-hero { padding: calc(var(--landing-nav-h) + 48px) 0 56px; }
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .landing-hero-visual { justify-content: center; }
  .landing-pricing-grid { grid-template-columns: 1fr; }
  .landing-split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .landing-split-reverse .landing-split-content,
  .landing-split-reverse .landing-split-visual { order: initial; }
  .landing-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .landing-flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .landing-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .landing-nav-toggle { display: inline-flex; }
  .landing-nav-menu {
    position: fixed;
    top: var(--landing-nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--app-border);
    box-shadow: var(--landing-shadow-card);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 99;
  }
  .landing-nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .landing-nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .landing-page .landing-nav-link {
    padding: 12px 16px;
    font-size: 16px;
  }
  .landing-nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .landing-nav-actions .landing-btn { justify-content: center; }
}

@media (max-width: 640px) {
  .landing-page { --landing-section-pad: 56px; }
  .landing-container { padding: 0 16px; }
  .landing-section-header,
  .landing-section-header-center { margin-bottom: 32px; }
  .landing-grid-2,
  .landing-grid-3 { grid-template-columns: 1fr; }
  .landing-hero-title { font-size: clamp(28px, 8vw, 40px); }
  .landing-hero-lead { font-size: 16px; }
  .landing-pricing-calc,
  .landing-pricing-summary,
  .landing-form-card,
  .landing-card { padding: 22px; }
  .landing-flow-step { padding: 22px; }
  .landing-testimonial { padding: 28px; }
  .landing-testimonial-quote { font-size: 18px; }
  .landing-pricing-total-value { font-size: 30px; }
  .landing-footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .landing-footer-links li + li::before { display: none; }
}

/* ============================================================
 * Scroll-in animations (subtle fade-up)
 * ============================================================ */
.landing-page [data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.landing-page [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.landing-page [data-animate-delay="1"] { transition-delay: 80ms; }
.landing-page [data-animate-delay="2"] { transition-delay: 160ms; }
.landing-page [data-animate-delay="3"] { transition-delay: 240ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .landing-page [data-animate] {
    opacity: 1;
    transform: none;
  }
}
