/* ===== LANDING PAGE — bleu marine + orange + vert ===== */

#land.screen.active {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 100dvh;
  padding-bottom: 0 !important;
  background: #f8fafc;
  z-index: 1;
}

body.land-open {
  overflow-x: hidden;
  overflow-y: auto !important;
  height: auto !important;
}

.land-page {
  --ln-navy: #003580;
  --ln-navy-dark: #002560;
  --ln-orange: #F97316;
  --ln-green: #00C896;
  color: #0f172a;
  overflow-x: hidden;
}

/* Header */
.land-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(0.65rem, env(safe-area-inset-top)) 1.25rem 0.65rem;
  background: rgba(0, 53, 128, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.land-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.land-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.land-logo span {
  font-size: 0.55rem;
  font-weight: 700;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

/* Globe lang picker — fixed bottom-right, menu hidden until click */
.land-globe-btn {
  display: none;
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 53, 128, 0.15);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 53, 128, 0.18);
  font-size: 1.15rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: transform 0.15s, box-shadow 0.15s;
}

#land.screen.active .land-globe-btn {
  display: flex;
}

.land-globe-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 53, 128, 0.22);
}

.land-lang-menu {
  display: none;
  position: fixed;
  bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 52px);
  right: max(1rem, env(safe-area-inset-right));
  z-index: 10002;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 53, 128, 0.18);
  padding: 0.35rem;
  min-width: 130px;
}

.land-lang-menu.open {
  display: block;
}

.land-lang-opt {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0.5rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
}

.land-lang-opt:hover {
  background: #f1f5f9;
}

.land-lang-opt.on {
  background: rgba(0, 53, 128, 0.08);
  color: var(--ln-navy);
}

.land-header-login {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 0.45rem 0.95rem !important;
  border-radius: 100px !important;
  min-height: 38px;
}

.land-header-signup {
  display: inline-flex;
  background: #fff !important;
  color: var(--ln-navy) !important;
  border: none !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  padding: 0.4rem 0.7rem !important;
  border-radius: 100px !important;
  white-space: nowrap;
}

.land-header-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .land-header-signup {
    font-size: 0.72rem !important;
    padding: 0.45rem 0.85rem !important;
  }
}

.land-hero-login-hint {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.land-hero-login-link {
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.25rem;
  padding: 0;
}

/* Hero */
.land-hero {
  background: linear-gradient(165deg, #003580 0%, #002560 55%, #001a45 100%);
  color: #fff;
  padding: 3rem 1.25rem 2.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.land-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 70%);
  pointer-events: none;
}

.land-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.land-hero-badge-protect {
  background: rgba(249, 115, 22, 0.18) !important;
  border-color: rgba(249, 115, 22, 0.4) !important;
  color: #fdba74 !important;
}

.land-hero-title br { display: block; }

.land-hero-promises {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  max-width: 560px;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

@media (min-width: 560px) {
  .land-hero-promises { grid-template-columns: 1fr 1fr; }
}

.land-promise-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.land-promise-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}

.land-promise-card p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  margin: 0;
}

.land-promise-icon { font-size: 1.35rem; flex-shrink: 0; }

.land-hero-video {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  text-align: center;
}

.land-video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.3);
}

.land-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.land-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy, #003580);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.land-video-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.land-trust-row--hero {
  margin-top: 1rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.land-hero-badge {
  display: inline-flex;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid rgba(0, 200, 150, 0.35);
  color: #6ee7c4;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.land-hero h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.land-hero-sub {
  font-size: clamp(0.95rem, 3.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
}

.land-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 360px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.land-btn-primary,
.land-btn-navy {
  background: #003580 !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.25) !important;
  border-radius: 100px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0.95rem 1.5rem !important;
  box-shadow: 0 4px 24px rgba(0, 53, 128, 0.5) !important;
  cursor: pointer;
  width: 100%;
}

.land-final .land-btn-navy {
  background: #F97316 !important;
  border-color: transparent !important;
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.45) !important;
}

.land-btn-xl {
  font-size: 1.05rem !important;
  padding: 1.05rem 1.75rem !important;
  max-width: 400px;
  margin: 0 auto;
}

.land-btn-secondary,
.land-btn-outline-navy {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  border-radius: 100px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  padding: 0.85rem 1.25rem !important;
  cursor: pointer;
  width: 100%;
  box-shadow: none !important;
}

.land-hero-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 1.1rem auto 0;
  padding: 0.65rem 1.1rem;
  background: rgba(0, 200, 150, 0.12);
  border: 1.5px solid rgba(0, 200, 150, 0.45);
  border-radius: 100px;
  color: #6ee7c4;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background 0.15s, transform 0.15s;
}

.land-hero-demo-link:hover {
  background: rgba(0, 200, 150, 0.22);
  transform: translateY(-1px);
}

/* Sections */
.land-section {
  padding: 2.75rem 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.land-section-title {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.45rem;
  color: var(--ln-navy);
  letter-spacing: -0.02em;
}

.land-section-sub {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Carousel */
.land-carousel-section {
  background: #fff;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.land-carousel-section .land-section-title,
.land-carousel-section .land-section-sub {
  padding: 0 1.25rem;
}

.lc-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.lc-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.lc-carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lc-slide {
  flex: 0 0 100%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

.lc-card-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  padding: 0 0.25rem;
}

.lc-card-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.lc-card-head h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ln-navy);
  margin-bottom: 0.2rem;
}

.lc-card-head p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}

.lc-mock {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 0.85rem;
  min-height: 200px;
  box-shadow: 0 8px 32px rgba(0, 53, 128, 0.08);
}

.lc-arrow {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--ln-navy);
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.lc-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0 1.25rem;
}

.lc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
}

.lc-dot.on {
  background: var(--ln-orange);
  transform: scale(1.25);
}

/* Mock: EDL — photo réelle + scan IA */
.lc-mock-edl {
  padding: 0.65rem !important;
}

.lc-edl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.lc-edl-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.lc-edl-lbl-top {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--ln-navy);
  text-align: center;
  letter-spacing: 0.02em;
}

.lc-edl-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  aspect-ratio: 4/3;
  background: #e2e8f0;
}

.lc-edl-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.lc-edl-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: #003580;
  opacity: 0.6;
  box-shadow: 0 0 12px rgba(0, 53, 128, 0.7), 0 2px 8px rgba(0, 53, 128, 0.4);
  z-index: 3;
  pointer-events: none;
  animation: lcEdlScanDown 6s linear infinite;
}

.lc-edl-scan-delay {
  animation-delay: 0.5s;
}

@keyframes lcEdlScanDown {
  0% { top: 0; opacity: 0.6; }
  50% { top: calc(100% - 3px); opacity: 0.6; }
  51%, 100% { top: calc(100% - 3px); opacity: 0; }
}

.lc-edl-ok {
  position: absolute;
  z-index: 4;
  font-size: 0.72rem;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
  opacity: 0;
  animation: lcEdlOkIn 6s ease-out infinite;
}

.lc-edl-col .lc-edl-ok-a { top: 14%; left: 10%; animation-delay: 0.05s; }
.lc-edl-col .lc-edl-ok-b { top: 38%; right: 12%; animation-delay: 0.15s; }
.lc-edl-col .lc-edl-ok-c { bottom: 38%; left: 18%; animation-delay: 0.25s; }
.lc-edl-col .lc-edl-ok-d { bottom: 12%; right: 22%; animation-delay: 0.35s; }

.lc-edl-col-out .lc-edl-ok {
  display: none;
}

@keyframes lcEdlOkIn {
  0%, 49% { opacity: 0; transform: scale(0.5); }
  53%, 88% { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; transform: scale(0.5); }
}

.lc-edl-damage {
  position: absolute;
  bottom: 14%;
  right: 10%;
  width: 42%;
  z-index: 4;
  opacity: 0;
  animation: lcEdlResultIn 6s ease-out infinite;
}

.lc-edl-damage-zone {
  width: 100%;
  height: 28px;
  border: 2px solid #ef4444;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.22);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.35);
}

.lc-edl-damage-txt {
  display: block;
  margin-top: 0.2rem;
  background: rgba(239, 68, 68, 0.92);
  color: #fff;
  font-size: 0.44rem;
  font-weight: 700;
  padding: 0.18rem 0.32rem;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.2;
}

.lc-edl-wall-ok {
  position: absolute;
  top: 16%;
  right: 8%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(0, 200, 150, 0.92);
  color: #fff;
  font-size: 0.44rem;
  font-weight: 700;
  padding: 0.18rem 0.35rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 200, 150, 0.45);
  opacity: 0;
  animation: lcEdlResultIn 6s ease-out infinite;
  animation-delay: 0.2s;
}

.lc-edl-wall-icon {
  font-size: 0.55rem;
  line-height: 1;
}

@keyframes lcEdlResultIn {
  0%, 49% { opacity: 0; transform: translateY(4px); }
  53%, 88% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0; transform: translateY(4px); }
}

.lc-edl-badge {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(0, 53, 128, 0.88);
  color: #fff;
  font-size: 0.42rem;
  font-weight: 700;
  padding: 0.22rem 0.45rem;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: lcEdlBadgeIn 6s ease-out infinite;
}

@keyframes lcEdlBadgeIn {
  0%, 49% { opacity: 0; transform: translateX(-50%) translateY(6px); }
  53%, 88% { opacity: 1; transform: translateX(-50%) translateY(0); }
  92%, 100% { opacity: 0; transform: translateX(-50%) translateY(6px); }
}

/* Mock: Planning */
.lc-plan-head {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ln-navy);
  margin-bottom: 0.5rem;
}

.lc-plan-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.4rem;
  align-items: center;
  padding: 0.35rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.65rem;
}

.lc-plan-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  color: #fff;
  text-align: center;
}

.lc-plan-badge.ab { background: #FF5A5F; }
.lc-plan-badge.bk { background: #003580; }
.lc-plan-badge.vr { background: #00C896; color: #003580; }

.lc-plan-time { color: #64748b; }
.lc-plan-name { font-weight: 600; text-align: right; }

/* Mock: PDF Report */
.lc-pdf-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ln-navy);
}

.lc-pdf-logo {
  font-weight: 800;
  color: var(--ln-navy);
  font-size: 0.85rem;
}

.lc-pdf-date { font-size: 0.62rem; color: #64748b; }

.lc-pdf-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  text-align: center;
}

.lc-pdf-kpis b {
  display: block;
  font-size: 0.9rem;
  color: var(--ln-navy);
}

.lc-pdf-kpis small {
  font-size: 0.55rem;
  color: #64748b;
}

.lc-pdf-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 70px;
  padding: 0.5rem;
  background: #fff;
  border-radius: 8px;
}

.lc-pdf-chart div {
  flex: 1;
  background: linear-gradient(180deg, var(--ln-green), var(--ln-navy));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

/* Mock: Team */
.lc-team-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.lc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lc-team-row b {
  display: block;
  font-size: 0.75rem;
}

.lc-status {
  font-size: 0.62rem;
  font-weight: 600;
}

.lc-st-active { color: var(--ln-orange); }
.lc-st-done { color: var(--ln-green); }
.lc-st-idle { color: #94a3b8; }

/* Mock: Deposits */
.lc-dep-head, .lc-dep-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.8fr;
  gap: 0.35rem;
  font-size: 0.65rem;
  padding: 0.35rem 0;
}

.lc-dep-head {
  font-weight: 700;
  color: var(--ln-navy);
  border-bottom: 2px solid var(--ln-navy);
  margin-bottom: 0.25rem;
}

.lc-dep-held {
  color: var(--ln-orange);
  font-weight: 700;
}

.lc-dep-ret {
  color: var(--ln-green);
  font-weight: 700;
}

/* Mock: Messages */
.lc-msg-in, .lc-msg-out {
  max-width: 85%;
  padding: 0.5rem 0.7rem;
  border-radius: 14px;
  font-size: 0.68rem;
  line-height: 1.4;
  margin-bottom: 0.45rem;
}

.lc-msg-in {
  background: #e2e8f0;
  color: #334155;
  border-bottom-left-radius: 4px;
}

.lc-msg-out {
  background: var(--ln-navy);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.lc-msg-ai small {
  display: block;
  font-size: 0.55rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

/* Mock: Invoice */
.lc-inv-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ln-navy);
  margin-bottom: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #e2e8f0;
}

.lc-inv-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  padding: 0.3rem 0;
  color: #475569;
}

.lc-inv-total {
  font-weight: 800;
  color: var(--ln-navy);
  border-top: 2px solid var(--ln-navy);
  margin-top: 0.35rem;
  padding-top: 0.45rem;
}

/* Mock: Incident */
.lc-inc-photo {
  background: #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lc-inc-photo span {
  display: block;
  font-size: 0.65rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.lc-inc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.lc-inc-meta b { font-size: 0.78rem; }

.lc-inc-prio {
  background: rgba(249, 115, 22, 0.15);
  color: var(--ln-orange);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.lc-inc-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: #64748b;
}

.lc-inc-status {
  color: var(--ln-green);
  font-weight: 700;
}

/* Compare table */
.land-pricing {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.land-compare-table {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 53, 128, 0.08);
}

.land-compare-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.72rem;
}

.land-compare-row.head {
  background: var(--ln-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.65rem;
}

.land-compare-row.highlight {
  background: rgba(0, 53, 128, 0.05);
  font-weight: 700;
}

.land-compare-row .ok {
  color: var(--ln-green);
  font-weight: 800;
  font-size: 0.9rem;
}

.land-compare-row .no {
  color: #ef4444;
  font-weight: 800;
  font-size: 0.9rem;
}

.land-compare-row .partial {
  color: #94a3b8;
  font-weight: 700;
}

.land-compare-row .price-free {
  color: var(--ln-green);
  font-weight: 800;
  font-size: 0.85rem;
}

.land-compare-row .price-no {
  color: #94a3b8;
  text-decoration: line-through;
}

.land-price-note {
  text-align: center;
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.85rem;
}

/* Testimonials */
.land-testimonials { background: #fff; }

.land-testi-grid {
  display: grid;
  gap: 0.85rem;
}

.land-testi {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.15rem;
}

.land-testi-stars {
  color: var(--ln-orange);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.land-testi q {
  display: block;
  font-size: 0.78rem;
  color: #334155;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.land-testi-author {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.land-testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.land-testi-name {
  font-size: 0.78rem;
  font-weight: 700;
}

.land-testi-role {
  font-size: 0.65rem;
  color: #64748b;
}

/* Final CTA */
.land-final {
  background: linear-gradient(165deg, #003580, #002560);
  color: #fff;
  text-align: center;
  padding: 3rem 1.25rem 3.5rem;
}

.land-final h2 {
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.land-final-counter {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.land-final-counter strong {
  color: var(--ln-green);
  font-size: 1.1rem;
}

.land-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
}

.land-trust-row--light {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 640px) {
  .land-hero-cta {
    flex-direction: row;
    max-width: 520px;
  }

  .lc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .land-testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .land-compare-row {
    font-size: 0.78rem;
    padding: 0.85rem 1rem;
  }
}

@media (min-width: 900px) {
  .lc-slide {
    padding: 0 1.5rem;
  }
}
