/* ==========================================================
   1. SAAS DESIGN TOKENS & TYPOGRAPHY IMPORTS
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  /* High-Contrast Bold Typography[cite: 2] */
  --lc-font-heading: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --lc-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* QuickDine Brand Crimson Red Colors */
  --lc-orange: #e60012;
  --lc-orange-dark: #c0000f;
  --lc-orange-soft: #fff0f1;
  --lc-orange-glow: rgba(230, 0, 18, 0.32);

  /* Deep High-Contrast Colors (No Dull Grays)[cite: 2] */
  --lc-ink: #090e17;
  --lc-ink-muted: #1e293b;
  --lc-navy: #090e17;
  --lc-navy-soft: #111c2a;
  --lc-navy-card: #152232;
  --lc-text: #1e293b;
  --lc-text-muted: #475569;
  
  /* Crisp Dividers & Canvas[cite: 2] */
  --lc-line: #cbd5e1;
  --lc-line-dark: rgba(255, 255, 255, 0.16);
  --lc-soft: #f8fafc;
  --lc-white: #ffffff;
  --lc-success: #10b981;

  /* Elevations[cite: 2] */
  --lc-radius-sm: 8px;
  --lc-radius-md: 14px;
  --lc-radius-lg: 20px;
  --lc-radius-full: 9999px;
  --lc-shadow: 0 16px 36px rgba(9, 14, 23, 0.08);
  --lc-shadow-sm: 0 2px 8px rgba(9, 14, 23, 0.05);
  --lc-shadow-md: 0 12px 32px rgba(9, 14, 23, 0.08);
  --lc-shadow-lg: 0 24px 48px -12px rgba(9, 14, 23, 0.14);
  --lc-container: 1240px;
}

/* ==========================================================
   2. GLOBAL BASE & HIGH-CONTRAST TYPOGRAPHY
   ========================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lc-ink);
  background: var(--lc-white);
  font-family: var(--lc-font-body) !important;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, p {
  margin-top: 0;
}

ul {
  margin: 0;
  padding: 0;
}

section, header, footer, main, nav, div {
  min-width: 0;
}

.bi {
  font-style: normal;
  line-height: 1;
}

.lc-container {
  width: min(var(--lc-container), calc(100% - 44px));
  margin-inline: auto;
}

.lc-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.lc-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--lc-radius-full);
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
  font-family: var(--lc-font-heading) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.lc-title {
  margin-bottom: 0;
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.lc-copy {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--lc-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.lc-center {
  text-align: center;
}

.lc-center .lc-copy {
  margin-inline: auto;
}

.lc-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: var(--lc-radius-sm);
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
  font-size: 20px;
  transition: transform 0.25s ease;
}

/* Hero Proof Badge[cite: 2] */
.lc-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(230, 0, 18, 0.35);
  border-radius: var(--lc-radius-full);
  background: #fff;
  box-shadow: 0 4px 14px rgba(230, 0, 18, 0.12);
  margin-bottom: 16px;
}

.lc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lc-success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
  animation: lcPulseDot 2s infinite;
}

@keyframes lcPulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.lc-proof-badge strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--lc-ink);
}

.lc-proof-sub {
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 600;
  border-left: 1px solid var(--lc-line);
  padding-left: 8px;
}

.lc-hero__micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lc-ink-muted);
}

.lc-hero__micro-trust i {
  color: var(--lc-success);
  margin-right: 4px;
}

/* Primary Buttons */
.lc-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1.5px solid var(--lc-ink);
  border-radius: var(--lc-radius-full);
  background: var(--lc-white);
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lc-btn:hover {
  transform: translateY(-2px);
  background: var(--lc-ink);
  color: var(--lc-white);
  box-shadow: var(--lc-shadow-md);
}

.lc-btn--orange {
  border-color: var(--lc-orange);
  background: var(--lc-orange);
  color: var(--lc-white);
  box-shadow: 0 8px 22px rgba(230, 0, 18, 0.4);
}

.lc-btn--orange:hover {
  border-color: var(--lc-orange-dark);
  background: var(--lc-orange-dark);
  box-shadow: 0 12px 28px rgba(230, 0, 18, 0.55);
}

.lc-btn--light {
  border-color: var(--lc-white);
  background: var(--lc-white);
  color: var(--lc-ink);
}

.lc-btn--light:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
  color: var(--lc-ink);
}

.lc-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: var(--lc-white);
  backdrop-filter: blur(6px);
}

.lc-btn--ghost:hover {
  border-color: var(--lc-white);
  background: var(--lc-white);
  color: var(--lc-ink);
}

/* ==========================================================
   3. PRELOADER & PROGRESS
   ========================================================== */
.lc-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.lc-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lc-loader__mark {
  position: relative;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
}

.lc-loader__mark img {
  width: 62px;
  height: auto;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.lc-loader__ring {
  position: absolute;
  inset: 0;
  border: 3px solid #f2e6df;
  border-top-color: var(--lc-orange);
  border-radius: 50%;
  animation: lcLoaderSpin 0.85s linear infinite;
}

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

.lc-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--lc-orange) var(--progress, 0%), transparent 0);
  pointer-events: none;
}

/* ==========================================================
   4. STICKY HEADER & NAV
   ========================================================== */
.lc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--lc-navy);
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.lc-header.is-scrolled {
  height: 68px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.lc-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.lc-brand {
  display: inline-flex;
  width: fit-content;
  max-width: 160px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--lc-white);
}

.lc-brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.lc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.lc-nav > a,
.lc-nav__trigger {
  position: relative;
  display: inline-flex;
  height: 78px;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.lc-header.is-scrolled .lc-nav > a,
.lc-header.is-scrolled .lc-nav__trigger {
  height: 68px;
}

.lc-nav > a::after,
.lc-nav__trigger::after {
  position: absolute;
  right: 100%;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--lc-orange);
  content: "";
  transition: right 0.25s ease;
}

.lc-nav > a:hover,
.lc-nav > a.active,
.lc-nav__item:hover .lc-nav__trigger,
.lc-nav__item:focus-within .lc-nav__trigger {
  color: var(--lc-white);
}

.lc-nav > a:hover::after,
.lc-nav > a.active::after,
.lc-nav__item:hover .lc-nav__trigger::after,
.lc-nav__item:focus-within .lc-nav__trigger::after {
  right: 0;
}

.lc-nav__item {
  position: relative;
}

.lc-nav__trigger {
  border: 0;
  background: transparent;
}

.lc-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: -28px;
  width: 340px;
  padding: 10px;
  border-radius: var(--lc-radius-md);
  border-top: 3px solid var(--lc-orange);
  background: var(--lc-white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.24s ease;
}

.lc-nav__item:hover .lc-dropdown,
.lc-nav__item:focus-within .lc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lc-dropdown a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 6px;
  color: var(--lc-ink);
  transition: 0.22s ease;
}

.lc-dropdown a:hover {
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
  transform: translateX(3px);
}

.lc-dropdown i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #eee;
  border-radius: 50%;
  color: var(--lc-orange);
  font-size: 18px;
}

.lc-dropdown strong,
.lc-dropdown small {
  display: block;
}

.lc-dropdown strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.lc-dropdown small {
  margin-top: 3px;
  color: #475569;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.lc-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lc-header__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--lc-radius-full);
  background: var(--lc-orange);
  color: var(--lc-white);
  font-family: var(--lc-font-heading) !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(230, 0, 18, 0.35);
  transition: all 0.2s ease;
}

.lc-header__cta:hover {
  background: var(--lc-orange-dark);
  transform: translateY(-1px);
}

.lc-round-btn {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--lc-white);
  font-size: 17px;
  transition: 0.22s ease;
}

.lc-round-btn:hover {
  border-color: var(--lc-orange);
  background: var(--lc-orange);
}

.lc-menu-btn {
  display: none;
}

.lc-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 16px 0;
  border-top: 1px solid var(--lc-line);
  background: var(--lc-white);
  box-shadow: 0 16px 30px rgba(17, 24, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.22s ease;
}

.lc-search.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lc-search__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lc-search__inner i {
  color: var(--lc-orange);
  font-size: 20px;
}

.lc-search__inner input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--lc-ink);
  font-size: 15px;
}

.lc-search__close {
  border: 0;
  background: transparent;
  color: #66717a;
  font-size: 22px;
}

.lc-mobile-nav {
  display: none;
}

/* ==========================================================
   5. HERO & ORBITAL FLOW ENGINE
   ========================================================== */
.lc-hero {
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 86% 20%, rgba(230, 0, 18, 0.09), transparent 45%),
    linear-gradient(112deg, #ffffff 0 52%, #fff5f5 52% 100%);
  border-bottom: 1px solid var(--lc-line);
}

.lc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 48px;
}

.lc-hero h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-family: var(--lc-font-heading) !important;
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.lc-hero h1 .orange {
  color: var(--lc-orange);
}

.lc-word-window {
  display: inline-grid;
  height: 1.1em;
  min-width: 160px;
  overflow: hidden;
  vertical-align: bottom;
  color: var(--lc-orange);
  isolation: isolate;
  contain: paint;
}

.lc-word-stack {
  display: flex;
  flex-direction: column;
  animation: lcWords 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform;
  transform: translateZ(0);
}

.lc-word-stack span {
  display: block;
  height: 1.1em;
  white-space: nowrap;
}

@keyframes lcWords {
  0%, 18% { transform: translateY(0); }
  22%, 38% { transform: translateY(-1.1em); }
  42%, 58% { transform: translateY(-2.2em); }
  62%, 78% { transform: translateY(-3.3em); }
  82%, 100% { transform: translateY(-4.4em); }
}

.lc-hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--lc-text);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.7;
}

.lc-hero__actions,
.lc-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.lc-trust {
  gap: 26px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--lc-line);
}

.lc-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lc-trust__item strong,
.lc-trust__item small {
  display: block;
}

.lc-trust__item strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 14px;
  font-weight: 800;
}

.lc-trust__item small {
  margin-top: 2px;
  color: var(--lc-text-muted);
  font-size: 12px;
  font-weight: 500;
}

/* Orbit Graphic[cite: 2] */
.lc-orbit {
  position: relative;
  height: 480px;
}

.lc-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 1.5px solid rgba(230, 0, 18, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.lc-orbit__ring::before {
  position: absolute;
  inset: -2px;
  border: 2px solid transparent;
  border-top-color: var(--lc-orange);
  border-right-color: rgba(230, 0, 18, 0.45);
  border-radius: 50%;
  content: "";
  animation: lcOrbitSpin 8s linear infinite;
}

.lc-orbit__runner {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--lc-orange);
  box-shadow: 0 4px 14px rgba(230, 0, 18, 0.5);
  transform: translateX(-50%);
}

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

.lc-orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  padding: 14px;
  border-radius: 50%;
  background: var(--lc-white);
  box-shadow: 0 18px 42px rgba(9, 14, 23, 0.14), 0 0 0 1px var(--lc-line);
  transform: translate(-50%, -50%);
}

.lc-orbit__core img {
  width: 78px;
  height: auto;
  object-fit: contain;
}

.lc-orbit__card {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 190px;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lc-orbit__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lc-shadow-lg);
  border-color: rgba(230, 0, 18, 0.45);
}

.lc-orbit__card i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--lc-radius-sm);
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
  font-size: 16px;
}

.lc-orbit__card strong,
.lc-orbit__card small {
  display: block;
}

.lc-orbit__card strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
}

.lc-orbit__card small {
  margin-top: 2px;
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 500;
}

.lc-orbit__card--1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: lcDiscoverFloat 3.8s ease-in-out infinite;
}

.lc-orbit__card--2 { top: 96px; right: 0; }
.lc-orbit__card--3 { right: 8px; bottom: 66px; }
.lc-orbit__card--4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.lc-orbit__card--5 { bottom: 78px; left: 0; }
.lc-orbit__card--6 { top: 110px; left: 0; }

@keyframes lcDiscoverFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

/* ==========================================================
   6. 3D MARQUEE
   ========================================================== */
.lc-marquee {
  overflow: hidden;
  padding: 16px 0;
  background: var(--lc-navy);
  color: var(--lc-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  perspective: 1100px;
}

.lc-marquee__track {
  display: flex;
  width: max-content;
  padding: 0;
}

.lc-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-right: 14px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--lc-radius-full);
  background: var(--lc-white);
  color: var(--lc-ink);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
  transform: perspective(700px) scale(1);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.42s ease, border-color 0.42s ease;
}

.lc-marquee__track span.is-focus {
  z-index: 2;
  border-color: rgba(230, 0, 18, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(230, 0, 18, 0.15);
  transform: perspective(700px) translateY(-3px) translateZ(36px) scale(1.06);
}

.lc-marquee__track i {
  color: var(--lc-orange);
}

/* ==========================================================
   7. PLATFORM & PROBLEM SECTION
   ========================================================== */
.lc-platform {
  background: var(--lc-soft);
  border-bottom: 1px solid var(--lc-line);
}

.lc-problems {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 40px 0 54px;
}

.lc-problem {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 20px 18px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lc-problem:hover {
  transform: translateY(-4px);
  box-shadow: var(--lc-shadow-md);
  border-color: rgba(230, 0, 18, 0.3);
}

.lc-problem strong,
.lc-problem small {
  display: block;
}

.lc-problem strong {
  margin-bottom: 5px;
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.4;
}

.lc-problem small {
  color: var(--lc-text-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.lc-section-shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 12px 0 44px;
  color: var(--lc-text-muted);
  font-family: var(--lc-font-heading) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.lc-section-shift span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #cbd5e1);
}

.lc-section-shift span:last-child {
  background: linear-gradient(90deg, #cbd5e1, transparent);
}

.lc-offers-intro {
  padding: 10px 0 0;
}

.lc-scroll-controls {
  display: none;
  justify-content: flex-end;
  gap: 8px;
  margin: 20px 0 10px;
}

.lc-scroll-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--lc-line);
  border-radius: 50%;
  background: #fff;
  color: var(--lc-ink);
  font-size: 16px;
  transition: 0.22s ease;
}

.lc-scroll-controls button:hover {
  border-color: var(--lc-orange);
  background: var(--lc-orange);
  color: #fff;
}

/* Product Cards */
.lc-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.lc-offer-card {
  overflow: hidden;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.lc-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lc-shadow-lg);
  border-color: rgba(230, 0, 18, 0.35);
}

.lc-offer-card__image {
  position: relative;
  height: 195px;
  overflow: hidden;
  background: #eceff1;
}

.lc-offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.lc-offer-card:hover .lc-offer-card__image img {
  transform: scale(1.05);
}

.lc-offer-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(9, 14, 23, 0.55));
  content: "";
}

.lc-offer-card__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(9, 14, 23, 0.45);
  color: var(--lc-white);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lc-offer-card:hover .lc-offer-card__arrow {
  background: var(--lc-orange);
  border-color: var(--lc-orange);
  transform: rotate(45deg);
}

.lc-offer-card__body {
  position: relative;
  min-height: 205px;
  padding: 30px 22px 24px;
}

.lc-offer-card__icon {
  position: absolute;
  top: -26px;
  left: 20px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  color: var(--lc-orange);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(9, 14, 23, 0.08), 0 0 0 1px var(--lc-line);
}

.lc-offer-card h3 {
  margin: 10px 0 8px;
  font-family: var(--lc-font-heading) !important;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.lc-offer-card p {
  margin-bottom: 0;
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* ==========================================================
   8. CUSTOMER JOURNEY
   ========================================================== */
.lc-journey {
  padding: 96px 0;
  background: var(--lc-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--lc-white);
}

.lc-journey .lc-title {
  color: var(--lc-white);
}

.lc-journey__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.lc-journey__grid::before {
  position: absolute;
  top: 29px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(230,0,18,0.6), rgba(255,255,255,0.08));
  content: "";
}

.lc-journey__step {
  position: relative;
  z-index: 1;
  text-align: center;
  transform-origin: center top;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lc-journey__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--lc-navy);
  color: var(--lc-white);
  box-shadow: 0 0 0 7px var(--lc-navy);
  font-size: 20px;
  transition: 0.25s ease;
}

.lc-journey__step.is-active {
  transform: translateY(-8px) scale(1.045);
}

.lc-journey__step.is-active .lc-journey__icon {
  border-color: var(--lc-orange);
  background: var(--lc-orange);
  color: var(--lc-white);
  box-shadow: 0 0 0 7px var(--lc-navy), 0 12px 26px rgba(230, 0, 18, 0.4);
}

.lc-journey__step strong,
.lc-journey__step small {
  display: block;
}

.lc-journey__step strong {
  margin-bottom: 6px;
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
}

.lc-journey__step small {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

/* ==========================================================
   9. PRODUCT ENGINE & TABS
   ========================================================== */
.lc-engine {
  background: var(--lc-white);
  border-bottom: 1px solid var(--lc-line);
}

.lc-engine__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.8fr);
  gap: 44px;
  align-items: start;
}

.lc-check-list {
  list-style: none;
  margin-top: 24px;
}

.lc-check-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--lc-ink);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
}

.lc-check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--lc-orange);
  content: "✓";
  font-weight: 900;
}

.lc-engine__tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md) var(--lc-radius-md) 0 0;
  overflow: hidden;
  border-bottom: 0;
}

.lc-engine__tab {
  min-width: 0;
  min-height: 54px;
  padding: 10px 12px;
  border: 0;
  border-right: 1px solid var(--lc-line);
  background: var(--lc-soft);
  color: var(--lc-text);
  font-family: var(--lc-font-heading) !important;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
  transition: 0.2s ease;
}

.lc-engine__tab:last-child {
  border-right: 0;
}

.lc-engine__tab:hover {
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
}

.lc-engine__tab.is-active {
  background: var(--lc-orange);
  color: var(--lc-white);
}

.lc-engine__box {
  padding: 26px;
  border: 1px solid var(--lc-line);
  border-radius: 0 0 var(--lc-radius-lg) var(--lc-radius-lg);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-md);
}

.lc-engine__content {
  display: grid;
  grid-template-columns: minmax(175px, 0.72fr) minmax(240px, 1fr) minmax(250px, 1.12fr);
  gap: 16px;
  align-items: stretch;
}

.lc-engine-card,
.lc-engine-summary,
.lc-product-preview {
  min-width: 0;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
}

.lc-engine-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.lc-engine-card .lc-btn {
  width: 100%;
  margin-top: auto;
}

.lc-engine-features {
  list-style: none;
}

.lc-engine-features li {
  position: relative;
  padding: 8px 0 8px 19px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--lc-ink-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.lc-engine-features li:last-child {
  border-bottom: 0;
}

.lc-engine-features li::before {
  position: absolute;
  left: 0;
  color: var(--lc-orange);
  content: "✓";
  font-weight: 900;
}

.lc-engine-summary {
  padding: 20px;
}

.lc-engine-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.lc-engine-summary__head h3 {
  margin: 0;
  font-family: var(--lc-font-heading) !important;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.lc-engine-summary__status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: var(--lc-radius-full);
  background: #ecfdf5;
  color: #10b981;
  font-size: 10px;
  font-weight: 800;
}

.lc-engine-summary__meta {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 600;
}

.lc-engine-summary__stats {
  display: grid;
  gap: 0;
  border-bottom: 1px solid #f1f5f9;
}

.lc-engine-summary__stats > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: var(--lc-text-muted);
  font-size: 12px;
  font-weight: 600;
}

.lc-engine-summary__stats > div + div {
  border-top: 1px solid #f8fafc;
}

.lc-engine-summary__stats strong {
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: 14px;
  font-weight: 800;
}

.lc-engine-summary__recent {
  padding-top: 12px;
}

.lc-engine-summary__recent > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 800;
}

.lc-engine-summary__recent > div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--lc-text);
  font-size: 11.5px;
  font-weight: 600;
}

.lc-engine-summary__recent small {
  color: var(--lc-text-muted);
  font-size: 10px;
}

.lc-engine-summary__avatar {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
  font-size: 9.5px;
  font-weight: 800;
}

.lc-product-preview {
  overflow: hidden;
  border-radius: var(--lc-radius-md);
}

.lc-product-preview__top {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  background: #090e17;
  color: var(--lc-white);
  font-size: 10.5px;
  font-weight: 800;
  font-family: var(--lc-font-heading) !important;
}

.lc-product-preview__dots {
  display: flex;
  gap: 4px;
}

.lc-product-preview__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64748b;
}

.lc-product-preview__viewport {
  display: grid;
  width: 100%;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}

.lc-product-preview__viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.lc-product-preview__footer {
  padding: 14px 16px;
  background: var(--lc-white);
}

.lc-product-preview__footer strong {
  display: block;
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: 12.5px;
  font-weight: 800;
}

.lc-product-preview__footer small {
  display: block;
  margin-top: 3px;
  color: var(--lc-text-muted);
  font-size: 11px;
  font-weight: 600;
}

/* ==========================================================
   10. MOTION & FLOW
   ========================================================== */
.lc-motion {
  background: var(--lc-white);
  border-bottom: 1px solid var(--lc-line);
}

.lc-motion__flow {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 72px minmax(140px, 1fr) 72px minmax(140px, 1fr) 72px minmax(140px, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 44px;
  padding: 34px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg) var(--lc-radius-lg) 0 0;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 32, 0.05);
}

.lc-motion-node {
  min-width: 0;
  padding: 20px 14px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: #fff;
  text-align: center;
  box-shadow: var(--lc-shadow-sm);
  animation: lcMotionPop 6.4s ease-in-out infinite;
}

.lc-motion-node:nth-of-type(1) { animation-delay: 0s; }
.lc-motion-node:nth-of-type(3) { animation-delay: 1.4s; }
.lc-motion-node:nth-of-type(5) { animation-delay: 2.8s; }
.lc-motion-node:nth-of-type(7) { animation-delay: 4.2s; }

@keyframes lcMotionPop {
  0%, 76%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--lc-shadow-sm);
  }
  82% {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 32px rgba(230, 0, 18, 0.18);
  }
}

.lc-motion-node--source,
.lc-motion-node--result {
  border-color: #fbd9c5;
  background: #fffbf8;
}

.lc-motion-node__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 11px;
  place-items: center;
  border-radius: var(--lc-radius-sm);
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
  font-size: 20px;
}

.lc-motion-node strong,
.lc-motion-node small {
  display: block;
}

.lc-motion-node strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
}

.lc-motion-node small {
  margin-top: 4px;
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
}

.lc-motion-connector {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: #f0d7c8;
}

.lc-motion-connector span {
  position: absolute;
  top: -3px;
  left: -12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lc-orange);
  animation: lcConnector 2.6s linear infinite;
}

.lc-motion-connector:nth-of-type(4) span { animation-delay: 0.6s; }
.lc-motion-connector:nth-of-type(6) span { animation-delay: 1.2s; }

@keyframes lcConnector {
  to { left: 100%; }
}

.lc-motion__micro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  padding: 0 24px 24px;
  border-right: 1px solid var(--lc-line);
  border-bottom: 1px solid var(--lc-line);
  border-left: 1px solid var(--lc-line);
  border-radius: 0 0 var(--lc-radius-lg) var(--lc-radius-lg);
  background: var(--lc-white);
  box-shadow: 0 18px 46px rgba(17, 24, 32, 0.05);
}

.lc-motion__micro span {
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid #f1f5f9;
  border-radius: var(--lc-radius-full);
  background: #fffaf7;
  color: var(--lc-ink);
  font-size: 12.5px;
  font-weight: 700;
}

.lc-motion__micro i {
  margin-right: 6px;
  color: var(--lc-orange);
}

/* ==========================================================
   11. LEAD ENGINE & KANBAN
   ========================================================== */
.lc-leads {
  background: linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
  border-bottom: 1px solid var(--lc-line);
}

.lc-leads__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 52px;
}

.lc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 18px;
}

.lc-badges span {
  padding: 6px 12px;
  border: 1px solid #cbd5e1;
  border-radius: var(--lc-radius-full);
  background: var(--lc-white);
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: 12px;
  font-weight: 800;
}

.lc-pipeline {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-lg);
}

.lc-pipeline::after {
  position: absolute;
  top: 0;
  left: -25%;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 0, 18, 0.06), transparent);
  content: "";
  animation: lcPipelineSweep 5s ease-in-out infinite;
}

@keyframes lcPipelineSweep {
  50%, 100% { left: 110%; }
}

.lc-pipeline__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.lc-pipeline__head h3 {
  margin-bottom: 0;
  font-family: var(--lc-font-heading) !important;
  font-size: 18px;
  font-weight: 900;
}

.lc-kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lc-kanban__col {
  min-width: 0;
  min-height: 270px;
  padding: 10px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-sm);
  background: #f8fafc;
}

.lc-kanban__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.lc-lead-card {
  min-width: 0;
  margin-bottom: 8px;
  padding: 12px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-sm);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lc-lead-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--lc-font-heading) !important;
  font-size: 12.5px;
  font-weight: 800;
}

.lc-lead-card p {
  margin-bottom: 8px;
  color: var(--lc-text);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.lc-lead-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--lc-text-muted);
  font-size: 10.5px;
  font-weight: 600;
}

.lc-source {
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--lc-orange-soft);
  color: var(--lc-orange);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.lc-kanban__col:nth-child(1) .lc-lead-card:first-of-type { animation: lcLeadPulse 5s ease-in-out infinite; }
.lc-kanban__col:nth-child(2) .lc-lead-card:first-of-type { animation: lcLeadPulse 5s 1s ease-in-out infinite; }
.lc-kanban__col:nth-child(3) .lc-lead-card:first-of-type { animation: lcLeadPulse 5s 2s ease-in-out infinite; }
.lc-kanban__col:nth-child(4) .lc-lead-card:first-of-type { animation: lcLeadPulse 5s 3s ease-in-out infinite; }

@keyframes lcLeadPulse {
  0%, 75%, 100% { transform: translateY(0); box-shadow: var(--lc-shadow-sm); }
  82% { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(9, 14, 23, 0.08); }
}

/* Signal Bridge */
.lc-signal-bridge {
  padding: 0;
  background: #fff;
}

.lc-signal-bridge__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  border-radius: var(--lc-radius-lg);
  background: var(--lc-navy);
  color: #fff;
}

.lc-signal-bridge__inner > div:first-child { text-align: left; }
.lc-signal-bridge__inner > div:last-child { text-align: right; }

.lc-signal-bridge__inner span,
.lc-signal-bridge__inner strong {
  display: block;
}

.lc-signal-bridge__inner > div > span {
  color: #f7a77a;
  font-family: var(--lc-font-heading) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.lc-signal-bridge__inner > div > span i {
  margin-right: 6px;
  color: var(--lc-orange);
}

.lc-signal-bridge__inner strong {
  margin-top: 4px;
  font-family: var(--lc-font-heading) !important;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.lc-signal-bridge__track {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.lc-signal-bridge__track b {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--lc-navy);
  color: var(--lc-orange);
  transform: translate(-50%, -50%);
}

.lc-signal-bridge__track span {
  position: absolute;
  top: -5px;
  left: 0;
  z-index: 3;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lc-orange);
  box-shadow: 0 0 0 6px rgba(230, 0, 18, 0.25);
  animation: lcBridgeSignal 2.8s ease-in-out infinite;
}

@keyframes lcBridgeSignal {
  0% { left: 0; }
  100% { left: calc(100% - 12px); }
}

/* ==========================================================
   12. AUTOMATION
   ========================================================== */
.lc-automation {
  background: var(--lc-white);
  border-bottom: 1px solid var(--lc-line);
}

.lc-automation__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 40px;
}

.lc-automation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 26px;
}

.lc-flow {
  min-width: 0;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  background: #f8fafc;
}

.lc-flow__label {
  margin-bottom: 18px;
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lc-trigger {
  display: grid;
  width: min(420px, 72%);
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid #efd9cb;
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
}

.lc-trigger--right {
  margin-left: auto;
}

.lc-trigger strong,
.lc-trigger small {
  display: block;
}

.lc-trigger strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
}

.lc-trigger small {
  margin-top: 2px;
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 500;
}

.lc-flow__line {
  width: 2px;
  height: 38px;
  margin-left: 30px;
  background: rgba(230, 0, 18, 0.45);
}

.lc-flow__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lc-action-card {
  min-width: 0;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-sm);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
}

.lc-action-card i {
  color: var(--lc-orange);
  font-size: 20px;
}

.lc-action-card strong,
.lc-action-card small {
  display: block;
}

.lc-action-card strong {
  margin: 10px 0 4px;
  font-family: var(--lc-font-heading) !important;
  font-size: 13px;
  font-weight: 800;
}

.lc-action-card small {
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
}

.lc-automation__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lc-benefit-card {
  min-width: 0;
  min-height: 166px;
  padding: 22px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
  transition: 0.24s ease;
}

.lc-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lc-shadow-md);
  border-color: rgba(230, 0, 18, 0.35);
}

.lc-benefit-card i {
  color: var(--lc-orange);
  font-size: 24px;
}

.lc-benefit-card h3 {
  margin: 12px 0 7px;
  font-family: var(--lc-font-heading) !important;
  font-size: 17px;
  font-weight: 800;
}

.lc-benefit-card p {
  margin-bottom: 0;
  color: var(--lc-text);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.55;
}

/* ==========================================================
   13. STORY & COLLAGE
   ========================================================== */
.lc-story {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-bottom: 1px solid var(--lc-line);
}

.lc-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.lc-story__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.lc-story__point {
  position: relative;
  min-height: 126px;
  padding: 18px 18px 16px 20px;
  overflow: hidden;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lc-story__point::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--lc-orange);
  content: "";
}

.lc-story__point:hover {
  border-color: #efd8ca;
  box-shadow: var(--lc-shadow-md);
  transform: translateY(-4px);
}

.lc-story__point strong,
.lc-story__point small {
  display: block;
}

.lc-story__point strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 14px;
  font-weight: 800;
}

.lc-story__point small {
  margin-top: 6px;
  color: var(--lc-text-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.lc-collage {
  position: relative;
  min-height: 480px;
  perspective: 1000px;
}

.lc-collage img {
  position: absolute;
  border-radius: var(--lc-radius-md);
  object-fit: cover;
  box-shadow: var(--lc-shadow-md);
}

.lc-collage__a {
  top: 35px;
  left: 0;
  width: 48%;
  height: 300px;
  animation: lcFloatA 7s ease-in-out infinite;
}

.lc-collage__b {
  top: 0;
  right: 0;
  width: 46%;
  height: 165px;
  border-radius: 0 32px 0 0;
  animation: lcFloatB 8s ease-in-out infinite;
}

.lc-collage__c {
  top: 185px;
  right: 0;
  width: 64%;
  height: 300px;
  animation: lcFloatC 9s ease-in-out infinite;
}

.lc-collage__tag {
  position: absolute;
  top: 310px;
  left: 28%;
  z-index: 3;
  display: flex;
  min-width: 245px;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1.5px solid var(--lc-orange);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-lg);
  animation: lcTagFloat 5s ease-in-out infinite;
}

.lc-collage__tag i {
  color: var(--lc-orange);
  font-size: 25px;
}

.lc-collage__tag strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

@keyframes lcFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -10px, 20px) rotate(0); }
}

@keyframes lcFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
  50% { transform: translate3d(8px, 8px, 28px) rotate(0); }
}

@keyframes lcFloatC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-7px, -7px, 16px); }
}

@keyframes lcTagFloat {
  50% { transform: translateY(-8px); }
}

/* ==========================================================
   14. CRM & LIVE COCKPIT WIDGETS
   ========================================================== */
.lc-crm {
  background: var(--lc-soft);
  border-bottom: 1px solid var(--lc-line);
}

.lc-crm__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.8fr);
  align-items: center;
  gap: 44px;
}

.lc-dashboard-wrap {
  position: relative;
  min-width: 0;
}

.lc-dashboard {
  display: grid;
  min-width: 0;
  min-height: 440px;
  grid-template-columns: 140px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-lg);
}

.lc-dashboard__side {
  padding: 18px 12px;
  background: var(--lc-navy);
  color: var(--lc-white);
}

.lc-dashboard__brand {
  margin-bottom: 22px;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--lc-white);
}

.lc-dashboard__brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lc-dashboard__nav {
  display: grid;
  gap: 6px;
  color: #cbd5e1;
  font-family: var(--lc-font-heading) !important;
  font-size: 11px;
  font-weight: 700;
}

.lc-dashboard__nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.lc-dashboard__nav span:hover,
.lc-dashboard__nav span.is-active {
  background: rgba(230, 0, 18, 0.2);
  color: var(--lc-white);
}

.lc-dashboard__nav i {
  width: 14px;
  color: var(--lc-orange);
}

.lc-dashboard__main {
  min-width: 0;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lc-dashboard__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

/* QuickDine Live Dashboard Components */
.qd-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.qd-kpi {
  padding: 12px 14px;
  border-radius: var(--lc-radius-sm);
  background: var(--lc-white);
  border: 1px solid var(--lc-line);
}
.qd-kpi small { display: block; font-size: 11px; color: var(--lc-text-muted); font-weight: 600; }
.qd-kpi strong { display: block; font-size: 19px; font-family: var(--lc-font-heading); color: var(--lc-ink); font-weight: 800; margin-top: 2px; }
.qd-kpi span { display: inline-block; font-size: 10px; color: var(--lc-success); font-weight: 700; margin-top: 2px; }

.qd-floor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.qd-table-card {
  padding: 12px;
  border-radius: var(--lc-radius-sm);
  border: 1px solid var(--lc-line);
  background: var(--lc-white);
}
.qd-table-card.is-occupied {
  border-left: 4px solid var(--lc-orange);
}
.qd-table-card.is-available {
  border-left: 4px solid var(--lc-success);
}
.qd-table-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.qd-table-card__top strong { font-family: var(--lc-font-heading); font-size: 13px; }
.qd-table-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--lc-radius-full);
}
.qd-table-badge.occ { background: var(--lc-orange-soft); color: var(--lc-orange); }
.qd-table-badge.avail { background: #ecfdf5; color: var(--lc-success); }
.qd-table-card small { font-size: 11px; color: var(--lc-text-muted); }

/* ==========================================================
   15. INTEGRATIONS HUB
   ========================================================== */
.lc-integrations {
  padding: 96px 0;
  background: var(--lc-navy);
  color: var(--lc-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lc-integrations .lc-title {
  color: var(--lc-white);
}

.lc-integrations .lc-copy {
  color: #cbd5e1;
}

.lc-integrations__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 40px;
}

.lc-integration-stage {
  position: relative;
  min-height: 480px;
  padding: 0;
}

.lc-integration-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  padding: 16px;
  border-radius: 50%;
  background: var(--lc-white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.lc-integration-core img {
  width: 74px;
  height: auto;
  object-fit: contain;
}

.lc-integration-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 38%;
  height: 1.5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  transform-origin: left center;
}

.lc-integration-line i {
  position: absolute;
  top: -1px;
  left: -25%;
  width: 25%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--lc-orange), transparent);
  animation: lcIntegrationSignal 3.2s linear infinite;
}

.lc-integration-line--1 { transform: rotate(-150deg); }
.lc-integration-line--2 { transform: rotate(-90deg); }
.lc-integration-line--3 { transform: rotate(-30deg); }
.lc-integration-line--4 { transform: rotate(30deg); }
.lc-integration-line--5 { transform: rotate(90deg); }
.lc-integration-line--6 { transform: rotate(150deg); }

.lc-integration-line--2 i { animation-delay: 0.35s; }
.lc-integration-line--3 i { animation-delay: 0.7s; }
.lc-integration-line--4 i { animation-delay: 1.05s; }
.lc-integration-line--5 i { animation-delay: 1.4s; }
.lc-integration-line--6 i { animation-delay: 1.75s; }

@keyframes lcIntegrationSignal {
  to { left: 115%; }
}

.lc-integration-map {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}

.lc-integration {
  position: absolute;
  width: 190px;
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--lc-radius-md);
  background: #142030;
  backdrop-filter: blur(8px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  animation: lcIntegrationPop 7s ease-in-out infinite;
}

.lc-integration--1 { top: 7%; left: 1%; animation-delay: 0s; }
.lc-integration--2 { top: 3%; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; }
.lc-integration--3 { top: 7%; right: 1%; animation-delay: 1.6s; }
.lc-integration--4 { right: 1%; bottom: 7%; animation-delay: 2.4s; }
.lc-integration--5 { bottom: 3%; left: 50%; transform: translateX(-50%); animation-delay: 3.2s; }
.lc-integration--6 { bottom: 7%; left: 1%; animation-delay: 4s; }

.lc-integration:hover {
  border-color: rgba(230, 0, 18, 0.75);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.lc-integration > img {
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: 50%;
  background: var(--lc-white);
  object-fit: contain;
}

.lc-integration strong,
.lc-integration small {
  display: block;
}

.lc-integration strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
}

.lc-integration small {
  margin-top: 2px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 500;
}

@keyframes lcIntegrationPop {
  0%, 82%, 100% { box-shadow: none; }
  87% { box-shadow: 0 0 0 2px rgba(230, 0, 18, 0.35), 0 16px 34px rgba(0, 0, 0, 0.24); }
}

/* ==========================================================
   16. OWNERSHIP
   ========================================================== */
.lc-ownership {
  background: var(--lc-white);
  border-bottom: 1px solid var(--lc-line);
}

.lc-ownership__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.lc-ownership__photo {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--lc-radius-lg);
  background: #f0f1f2;
}

.lc-ownership__photo > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.lc-ownership__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(9, 14, 23, 0.62));
  content: "";
}

.lc-ownership__float {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(320px, calc(100% - 44px));
  padding: 18px 20px;
  border-left: 4px solid var(--lc-orange);
  border-radius: var(--lc-radius-sm);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-lg);
}

.lc-ownership__float strong,
.lc-ownership__float small {
  display: block;
}

.lc-ownership__float strong {
  font-family: var(--lc-font-heading) !important;
  font-size: 16px;
  font-weight: 900;
}

.lc-ownership__float small {
  margin-top: 5px;
  color: var(--lc-text);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.lc-ownership__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.lc-ownership-card {
  min-width: 0;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-soft);
  transition: 0.25s ease;
}

.lc-ownership-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 18, 0.35);
}

.lc-ownership-card i {
  color: var(--lc-orange);
  font-size: 22px;
}

.lc-ownership-card strong,
.lc-ownership-card small {
  display: block;
}

.lc-ownership-card strong {
  margin: 10px 0 5px;
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
}

.lc-ownership-card small {
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================
   17. PRICING
   ========================================================== */
.lc-pricing {
  background: var(--lc-soft);
  border-bottom: 1px solid var(--lc-line);
}

.lc-pricing__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 38px;
}

.lc-pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 20px;
}

.lc-price-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-md);
}

.lc-price-main h3 {
  margin-bottom: 8px;
  font-family: var(--lc-font-heading) !important;
  font-size: 23px;
  font-weight: 900;
}

.lc-price-main p {
  color: var(--lc-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.lc-price {
  margin: 18px 0 4px;
  font-family: var(--lc-font-heading) !important;
  font-size: 50px;
  font-weight: 900;
  color: var(--lc-ink);
  letter-spacing: -0.04em;
}

.lc-price small {
  color: var(--lc-text-muted);
  font-family: var(--lc-font-body) !important;
  font-size: 13.5px;
  font-weight: 600;
}

.lc-price-note {
  color: var(--lc-text-muted);
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.lc-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  list-style: none;
}

.lc-price-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--lc-ink);
  font-size: 13px;
  font-weight: 600;
}

.lc-price-list li::before {
  position: absolute;
  left: 0;
  color: var(--lc-orange);
  content: "✓";
  font-weight: 900;
}

.lc-price-side {
  display: grid;
  gap: 18px;
}

.lc-price-addon {
  padding: 28px;
  border-radius: var(--lc-radius-md);
  background: var(--lc-navy);
  color: var(--lc-white);
}

.lc-price-addon--orange {
  background: linear-gradient(135deg, var(--lc-orange) 0%, var(--lc-orange-dark) 100%);
}

.lc-price-addon span,
.lc-price-addon strong,
.lc-price-addon p {
  display: block;
}

.lc-price-addon span {
  color: #cbd5e1;
  font-family: var(--lc-font-heading) !important;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lc-price-addon--orange span {
  color: rgba(255, 255, 255, 0.9);
}

.lc-price-addon strong {
  margin: 8px 0 7px;
  font-family: var(--lc-font-heading) !important;
  font-size: 24px;
  font-weight: 900;
}

.lc-price-addon p {
  margin-bottom: 14px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.lc-price-addon--orange p {
  color: rgba(255, 255, 255, 0.95);
}

/* ==========================================================
   18. USE CASES & FAQ
   ========================================================== */
.lc-cases {
  background: var(--lc-white);
  border-bottom: 1px solid var(--lc-line);
}

.lc-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.lc-case-controls {
  display: none;
}

.lc-case {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-lg);
  background: var(--lc-white);
  box-shadow: var(--lc-shadow-sm);
  transition: 0.26s ease;
}

.lc-case:hover {
  transform: translateY(-6px);
  box-shadow: var(--lc-shadow-md);
  border-color: rgba(230, 0, 18, 0.35);
}

.lc-case__image {
  position: relative;
  height: 155px;
  overflow: hidden;
}

.lc-case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lc-case__body {
  position: relative;
  min-height: 165px;
  padding: 24px 18px 22px;
}

.lc-case__icon {
  position: absolute;
  top: -26px;
  right: 18px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: var(--lc-radius-sm);
  background: var(--lc-white);
  color: var(--lc-orange);
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(9, 14, 23, 0.08), 0 0 0 1px var(--lc-line);
}

.lc-case h3 {
  margin-bottom: 8px;
  padding-right: 42px;
  font-family: var(--lc-font-heading) !important;
  font-size: 17.5px;
  font-weight: 800;
  line-height: 1.2;
}

.lc-case p {
  margin-bottom: 0;
  color: var(--lc-text);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.58;
}

/* FAQ Accordions */
.lc-faq {
  padding: 80px 0;
  background: var(--lc-soft);
}

.lc-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px 18px;
  margin-top: 36px;
}

.lc-faq__item {
  overflow: hidden;
  border: 1px solid var(--lc-line);
  border-radius: var(--lc-radius-md);
  background: var(--lc-white);
  transition: all 0.25s ease;
}

.lc-faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  background: var(--lc-white);
  color: var(--lc-ink);
  font-family: var(--lc-font-heading) !important;
  font-size: 14.5px;
  font-weight: 800;
  text-align: left;
}

.lc-faq__question i {
  flex: 0 0 auto;
  color: var(--lc-orange);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.lc-faq__answer {
  display: block;
  max-height: 0;
  opacity: 0;
  padding: 0 20px;
  overflow: hidden;
  color: var(--lc-text);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.62;
  transition: max-height 0.3s ease, opacity 0.22s ease, padding 0.3s ease;
}

.lc-faq__item.is-open {
  border-color: #efcbb7;
  box-shadow: 0 12px 28px rgba(9, 14, 23, 0.06);
}

.lc-faq__item.is-open .lc-faq__answer {
  max-height: 240px;
  opacity: 1;
  padding: 0 20px 20px;
}

.lc-faq__item.is-open .lc-faq__question i {
  transform: rotate(45deg);
}

/* ==========================================================
   19. FINAL CTA & FOOTER
   ========================================================== */
.lc-final {
  background: var(--lc-soft);
  padding-bottom: 96px;
}

.lc-final__box {
  display: grid;
  min-height: 150px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 44px 52px;
  border-radius: var(--lc-radius-lg);
  background: linear-gradient(100deg, var(--lc-orange), #ff2435);
  color: var(--lc-white);
  box-shadow: 0 20px 48px -8px rgba(230, 0, 18, 0.45);
}

.lc-final h2 {
  margin-bottom: 0;
  font-family: var(--lc-font-heading) !important;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.15;
}

.lc-final p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
}

.lc-final__actions {
  display: flex;
  gap: 14px;
}

.lc-footer {
  position: relative;
  overflow: hidden;
  padding: 60px 0 28px;
  background: var(--lc-navy);
  color: var(--lc-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lc-footer > .lc-container {
  position: relative;
  z-index: 1;
}

.lc-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.lc-footer__brand {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--lc-white);
}

.lc-footer__brand img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.lc-footer__about p {
  max-width: 280px;
  margin: 16px 0;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.lc-socials {
  display: flex;
  gap: 8px;
}

.lc-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #33414d;
  border-radius: 50%;
  color: #cbd5e1;
  font-size: 13px;
  transition: all 0.2s ease;
}

.lc-socials a:hover {
  border-color: var(--lc-orange);
  background: var(--lc-orange);
  color: #fff;
}

.lc-footer h3 {
  margin-bottom: 14px;
  font-family: var(--lc-font-heading) !important;
  font-size: 13.5px;
  font-weight: 800;
}

.lc-footer__links a {
  display: block;
  padding: 4px 0;
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lc-footer__links a:hover {
  color: var(--lc-white);
}

.lc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
}

/* Scroll Reveal Triggers */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   20. RESPONSIVE BREAKPOINTS
   ========================================================== */
@media (max-width: 1180px) {
  .lc-container {
    width: min(1120px, calc(100% - 40px));
  }
  .lc-nav { gap: 18px; }
  .lc-problems { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
  .lc-header, .lc-header.is-scrolled { height: 70px; }
  .lc-header__inner { grid-template-columns: 1fr auto; }
  .lc-nav, .lc-header__cta { display: none; }
  .lc-menu-btn { display: grid; }

  .lc-mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 18px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--lc-navy);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
  }

  .lc-mobile-nav.is-open { display: block; }
  .lc-mobile-nav a, .lc-mobile-nav__label {
    display: block;
    padding: 11px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--lc-white);
    font-family: var(--lc-font-heading) !important;
    font-size: 14px;
    font-weight: 700;
  }

  .lc-mobile-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 0;
  }

  .lc-mobile-products a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border: 0;
    border-radius: var(--lc-radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: #dbe2e8;
    font-size: 11px;
  }

  .lc-hero__grid,
  .lc-engine__layout,
  .lc-leads__grid,
  .lc-automation__head,
  .lc-automation__grid,
  .lc-story__grid,
  .lc-crm__grid,
  .lc-integrations__grid,
  .lc-ownership__grid,
  .lc-pricing__head,
  .lc-pricing__grid {
    grid-template-columns: 1fr;
  }

  .lc-hero__copy,
  .lc-engine__copy,
  .lc-crm__copy,
  .lc-integrations__copy,
  .lc-ownership__copy {
    text-align: center;
  }

  .lc-hero h1, .lc-hero__lead, .lc-copy, .lc-check-list {
    margin-inline: auto;
  }

  .lc-hero__actions, .lc-trust { justify-content: center; }

  .lc-offers, .lc-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lc-motion__flow {
    grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    padding: 26px 20px;
  }

  .lc-dashboard-wrap, .lc-orbit, .lc-collage {
    width: min(820px, 100%);
    margin-inline: auto;
  }

  .lc-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lc-footer__about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .lc-section { padding: 72px 0; }
  .lc-offer-controls, .lc-case-controls { display: flex; }

  .lc-offers, .lc-cases__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 14px;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: calc((100vw - 100%) / 2);
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .lc-offers::-webkit-scrollbar, .lc-cases__grid::-webkit-scrollbar { display: none; }
  .lc-offer-card, .lc-case { flex: 0 0 min(78vw, 330px); scroll-snap-align: start; }

  .lc-problems { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .lc-journey__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 8px 4px 18px;
    scrollbar-width: none;
  }
  .lc-journey__grid::-webkit-scrollbar { display: none; }
  .lc-journey__grid::before { display: none; }
  .lc-journey__step { flex: 0 0 150px; scroll-snap-align: center; }

  .lc-engine__tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .lc-engine__tabs::-webkit-scrollbar { display: none; }
  .lc-engine__tab { min-width: 158px; flex: 0 0 158px; border-bottom: 1px solid var(--lc-line); }
  .lc-engine__content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lc-product-preview { grid-column: 1 / -1; width: min(360px, 100%); margin-inline: auto; }

  .lc-motion__flow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 20px;
    scrollbar-width: none;
  }
  .lc-motion__flow::-webkit-scrollbar { display: none; }
  .lc-motion-node { flex: 0 0 190px; scroll-snap-align: center; }
  .lc-motion-connector { flex: 0 0 46px; }

  .lc-kanban, .lc-flow__actions, .lc-automation__benefits, .lc-story__points, .lc-ownership__cards, .lc-price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lc-signal-bridge__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .lc-signal-bridge__inner > div:first-child,
  .lc-signal-bridge__inner > div:last-child { text-align: center; }
  .lc-signal-bridge__track { width: min(280px, 80%); margin: auto; }

  .lc-dashboard { grid-template-columns: 82px minmax(0, 1fr); }
  .lc-dashboard__nav span { justify-content: center; font-size: 0; }
  .lc-dashboard__nav i { width: auto; font-size: 15px; }

  .lc-integration-stage { min-height: auto; }
  .lc-integration-core {
    position: relative;
    top: auto;
    left: auto;
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    transform: none;
  }
  .lc-integration-line { display: none; }
  .lc-integration-map {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .lc-integration { position: static; width: auto; transform: none !important; }

  .lc-price-main, .lc-faq__grid { grid-template-columns: 1fr; }
  .lc-final__box { grid-template-columns: 1fr; text-align: center; }
  .lc-final__actions { justify-content: center; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 64px; }
  .lc-container { width: calc(100% - 24px); }
  .lc-header, .lc-header.is-scrolled { height: 64px; }
  .lc-brand img { height: 32px; }
  .lc-mobile-nav { top: 64px; max-height: calc(100dvh - 64px); }
  .lc-mobile-products { grid-template-columns: 1fr; }

  .lc-hero { padding-top: 48px; }
  .lc-hero h1 { font-size: clamp(38px, 11vw, 48px); }
  .lc-hero__lead { font-size: 14.5px; }
  .lc-trust { grid-template-columns: 1fr; }

  .lc-orbit {
    position: relative;
    display: block;
    width: 100%;
    height: 360px;
    margin-top: 24px;
  }
  .lc-orbit__ring {
    width: min(230px, 62vw);
    height: min(230px, 62vw);
  }
  .lc-orbit__core {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
  .lc-orbit__core img { width: 60px; }
  .lc-orbit__card {
    position: absolute;
    width: 122px;
    min-width: 0;
    padding: 8px 10px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    transform: none;
  }
  .lc-orbit__card i { width: 28px; height: 28px; font-size: 12px; }
  .lc-orbit__card strong { font-size: 10px; }
  .lc-orbit__card small { font-size: 8.5px; }
  .lc-orbit__card--1 { top: 0; left: 50%; transform: translateX(-50%); }
  .lc-orbit__card--2 { top: 68px; right: 0; }
  .lc-orbit__card--3 { right: 0; bottom: 62px; }
  .lc-orbit__card--4 { bottom: 0; left: 50%; transform: translateX(-50%); }
  .lc-orbit__card--5 { bottom: 62px; left: 0; }
  .lc-orbit__card--6 { top: 68px; left: 0; }

  .lc-problems {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .lc-problems::-webkit-scrollbar { display: none; }
  .lc-problem { flex: 0 0 min(82vw, 310px); scroll-snap-align: start; }

  .lc-engine__box { padding: 14px; }
  .lc-engine__content { display: flex; flex-direction: column; gap: 12px; }
  .lc-product-preview { order: 1; width: min(290px, 84vw); }
  .lc-engine-summary { order: 2; }
  .lc-engine-card { order: 3; }

  .lc-kanban {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .lc-kanban::-webkit-scrollbar { display: none; }
  .lc-kanban__col { flex: 0 0 min(80vw, 270px); }

  .lc-flow { min-height: 0; padding: 18px; }
  .lc-trigger, .lc-trigger--right { width: 100%; margin-left: 0; }
  .lc-flow__actions, .lc-automation__benefits, .lc-story__points, .lc-ownership__cards, .lc-price-list, .lc-integration-map {
    grid-template-columns: 1fr;
  }

  .lc-collage { min-height: 380px; }
  .lc-collage__a { top: 26px; width: 58%; height: 220px; }
  .lc-collage__b { width: 44%; height: 120px; }
  .lc-collage__c { top: 140px; width: 65%; height: 230px; }
  .lc-collage__tag { top: 240px; left: 10%; min-width: 180px; }

  .lc-dashboard { grid-template-columns: 52px minmax(0, 1fr); min-height: 360px; }
  .lc-dashboard__side { padding: 8px 5px; }
  .lc-dashboard__brand img { width: 38px; }
  .lc-dashboard__nav span { min-height: 27px; padding: 4px; }
  .lc-dashboard__main { padding: 0; }

  .lc-ownership__photo, .lc-ownership__photo > img { min-height: 330px; height: 330px; }
  .lc-price-main { padding: 22px; }
  .lc-price { font-size: 42px; }
  .lc-final__box { padding: 28px 20px; }
  .lc-final__actions { flex-direction: column; }
  .lc-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qd-kpis { grid-template-columns: repeat(2, 1fr); }
  .qd-floor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}