/* ═══════════════════════════════════════════
   منصة العقارات — Landing Page (Premium UI)
   ═══════════════════════════════════════════ */

:root {
  --lp-bg: #060d18;
  --lp-surface: #0f1a2e;
  --lp-surface-2: #162236;
  --lp-border: rgba(255,255,255,.08);
  --lp-text: #f1f5f9;
  --lp-muted: #94a3b8;
  --lp-teal: #14b8a6;
  --lp-teal-dim: rgba(20,184,166,.15);
  --lp-gold: #d4a853;
  --lp-gold-dim: rgba(212,168,83,.12);
  --lp-blue: #3b82f6;
  --lp-purple: #a78bfa;
  --lp-radius: 16px;
}

/* ── Base ── */
.landing-body {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.landing-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(20,184,166,.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(59,130,246,.1), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(212,168,83,.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.landing-body > * { position: relative; z-index: 1; }

.landing-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.landing-body .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.landing-body .btn:hover { transform: translateY(-2px); }
.landing-body .btn-lg { padding: .9rem 1.75rem; font-size: 1.05rem; border-radius: 12px; }

.landing-body .btn-gold {
  background: linear-gradient(135deg, #d4a853, #b8862d);
  color: #0a0f18;
  box-shadow: 0 4px 24px rgba(212,168,83,.35);
}
.landing-body .btn-gold:hover {
  box-shadow: 0 8px 32px rgba(212,168,83,.45);
}

.landing-body .btn-outline {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}
.landing-body .btn-outline:hover {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.04);
}

/* ── Nav ── */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,13,24,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lp-border);
}

.landing-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--lp-text);
}

.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo-mark.sm { width: 36px; height: 36px; }

.logo-text { font-size: 1.15rem; font-weight: 400; }
.logo-text strong { font-weight: 700; }

.landing-menu { display: flex; gap: 2rem; }
.landing-menu a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.landing-menu a:hover { color: var(--lp-text); }

/* ── Hero ── */
.landing-hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--lp-teal-dim);
  color: var(--lp-teal);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(20,184,166,.25);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--lp-teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.text-accent {
  color: var(--lp-teal);
  position: relative;
}

.hero-lead {
  color: var(--lp-muted);
  font-size: 1.125rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust { display: flex; flex-direction: column; gap: .65rem; }
.hero-trust > span { font-size: .78rem; color: var(--lp-muted); text-transform: uppercase; letter-spacing: .08em; }
.trust-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.trust-tags em {
  font-style: normal;
  font-size: .82rem;
  color: var(--lp-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--lp-border);
  padding: .3rem .75rem;
  border-radius: 999px;
}

/* ── Mockup ── */
.hero-mockup {
  background: linear-gradient(160deg, var(--lp-surface), #0a1220);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 40px 80px rgba(0,0,0,.5),
    0 0 60px rgba(20,184,166,.08);
}

.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--lp-border);
}

.mockup-dots { display: flex; gap: .35rem; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-title { font-size: .78rem; color: var(--lp-muted); }

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.ms-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: .85rem;
}

.ms-card small { display: block; font-size: .68rem; color: var(--lp-muted); margin-bottom: .25rem; }
.ms-card strong { font-size: 1.25rem; font-weight: 700; color: #fff; }
.ms-card span { font-size: .7rem; color: var(--lp-muted); }
.ms-card .up { color: #34d399; }
.ms-card.highlight {
  background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(59,130,246,.1));
  border-color: rgba(20,184,166,.3);
}
.ms-card.highlight strong { color: var(--lp-teal); }

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 80px;
  padding: .75rem;
  background: rgba(0,0,0,.2);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.mockup-chart .bar {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 4px 4px 0 0;
  transition: height .3s;
}
.mockup-chart .bar.active {
  background: linear-gradient(to top, var(--lp-teal), var(--lp-blue));
}

.mockup-sync {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--lp-teal);
  background: var(--lp-teal-dim);
  padding: .5rem .75rem;
  border-radius: 8px;
}

.sync-icon { animation: spin 4s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Stats band ── */
.stats-band {
  border-block: 1px solid var(--lp-border);
  background: rgba(255,255,255,.02);
  padding: 2rem 0;
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.band-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}

.band-stat span { font-size: .85rem; color: var(--lp-muted); }

/* ── Sections ── */
.landing-section { padding: 6rem 0; }
.landing-section.alt { background: rgba(255,255,255,.015); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lp-teal);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
}

.section-header p { color: var(--lp-muted); font-size: 1.05rem; line-height: 1.75; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,184,166,.3);
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon-wrap svg { width: 26px; height: 26px; }
.feature-icon-wrap.teal { background: var(--lp-teal-dim); color: var(--lp-teal); }
.feature-icon-wrap.gold { background: var(--lp-gold-dim); color: var(--lp-gold); }
.feature-icon-wrap.blue { background: rgba(59,130,246,.15); color: var(--lp-blue); }
.feature-icon-wrap.purple { background: rgba(167,139,250,.15); color: var(--lp-purple); }

.feature-card h3 { font-size: 1.15rem; margin-bottom: .6rem; color: #fff; }
.feature-card p { color: var(--lp-muted); font-size: .92rem; line-height: 1.7; }

/* ── Modules ── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.module-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}

.module-card:hover { border-color: rgba(212,168,83,.35); }

.module-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  position: absolute;
  top: .5rem;
  left: 1rem;
  line-height: 1;
}

.module-card h3 { font-size: 1.15rem; margin-bottom: .5rem; color: #fff; position: relative; }
.module-card p { color: var(--lp-muted); font-size: .9rem; position: relative; }

/* ── Workflow ── */
.workflow-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.wf-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.5rem;
  text-align: center;
}

.wf-step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lp-teal), var(--lp-blue));
  border-radius: 50%;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .75rem;
  color: #fff;
}

.wf-step h4 { font-size: 1rem; margin-bottom: .35rem; color: #fff; }
.wf-step p { font-size: .82rem; color: var(--lp-muted); }

.wf-arrow {
  display: flex;
  align-items: center;
  color: var(--lp-muted);
  font-size: 1.25rem;
  padding: 0 .25rem;
}

/* ── Integrations ── */
.integrations-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--lp-surface), rgba(20,184,166,.06));
  border: 1px solid rgba(20,184,166,.2);
  border-radius: 24px;
  padding: 3rem;
}

.int-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  margin-bottom: 1rem;
  color: #fff;
}

.int-content > p { color: var(--lp-muted); line-height: 1.75; margin-bottom: 1.5rem; }

.check-list { list-style: none; }
.check-list li {
  padding: .45rem 1.5rem .45rem 0;
  color: var(--lp-text);
  font-size: .92rem;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--lp-teal);
  font-weight: 700;
}

.integration-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}

.int-logo {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 1.15rem;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
  color: var(--lp-text);
  transition: border-color .2s, transform .2s;
}

.int-logo:hover { border-color: var(--lp-teal); transform: scale(1.03); }
.int-logo.accent {
  background: var(--lp-teal-dim);
  border-color: rgba(20,184,166,.35);
  color: var(--lp-teal);
}

/* ── AI ── */
.ai-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--lp-surface);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 24px;
  padding: 3rem;
  overflow: hidden;
}

.ai-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,.2), transparent 70%);
  top: -50%;
  left: -10%;
  pointer-events: none;
}

.ai-content h2 { font-size: 1.75rem; margin-bottom: .75rem; color: #fff; }
.ai-content p { color: var(--lp-muted); line-height: 1.75; }

.ai-features { display: flex; flex-direction: column; gap: .85rem; }
.ai-features div {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.ai-features strong { display: block; color: #fff; font-size: .95rem; }
.ai-features small { color: var(--lp-muted); font-size: .8rem; }

/* ── CTA ── */
.landing-cta { padding: 5rem 0 6rem; }

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, var(--lp-surface), rgba(212,168,83,.08));
  border: 1px solid rgba(212,168,83,.2);
  border-radius: 24px;
  padding: 4rem 2rem;
}

.cta-box h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: .75rem;
  color: #fff;
}

.cta-box p { color: var(--lp-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.landing-footer {
  border-top: 1px solid var(--lp-border);
  padding: 2.5rem 0;
  background: rgba(0,0,0,.3);
}

.landing-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.landing-footer p { color: var(--lp-muted); font-size: .88rem; }

.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--lp-muted); text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: var(--lp-teal); }

/* ── Partners strip ── */
.partners-strip { padding: 2.5rem 0; border-block: 1px solid var(--lp-border); }
.partners-label { text-align: center; font-size: .78rem; color: var(--lp-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.partners-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.partners-logos span { color: var(--lp-muted); font-weight: 600; font-size: .95rem; opacity: .7; transition: opacity .2s, color .2s, transform .2s; display: inline-block; }
.partners-logos span:hover { opacity: 1; color: var(--lp-text); }

/* ── Trusted partners marquee (footer) ── */
.trusted-marquee {
    padding: 1.75rem 0 1.5rem;
    background: linear-gradient(180deg, rgba(15,23,42,.6) 0%, rgba(15,23,42,.95) 100%);
    border-top: 1px solid var(--lp-border);
    overflow: hidden;
}

.trusted-marquee-label {
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1.25rem;
}

.trusted-marquee-viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trusted-marquee-track {
    display: flex;
    width: max-content;
    animation: trusted-marquee 45s linear infinite;
}

.trusted-marquee-track:hover {
    animation-play-state: paused;
}

.trusted-marquee-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-inline: .75rem;
    flex-shrink: 0;
}

.trusted-partner-chip {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem 1.1rem .55rem .85rem;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    white-space: nowrap;
    transition: border-color .2s, background .2s;
}

.trusted-partner-chip:hover {
    border-color: rgba(20,184,166,.45);
    background: rgba(20,184,166,.08);
}

.trusted-partner-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-teal), #2563eb);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trusted-partner-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.trusted-partner-info strong {
    font-size: .88rem;
    font-weight: 600;
    color: var(--lp-text);
}

.trusted-partner-info small {
    font-size: .68rem;
    color: var(--lp-muted);
}

@keyframes trusted-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .trusted-marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
    .trusted-marquee-viewport { mask-image: none; overflow: visible; }
    .trusted-marquee-group[aria-hidden="true"] { display: none; }
    .float-slow, .sync-icon, .pulse-dot, .status-dot.pulse { animation: none; }
    .anim-item, .stagger-child { opacity: 1; transform: none; }
    .tab-panel { transition: none; }
    .bar-grow, .chart-bar.bar-grow { height: var(--h, 50%) !important; animation: none; }
    .scroll-progress { display: none; }
}

.landing-nav.scrolled {
  background: rgba(6,13,24,.96);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lp-text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  margin: 0 auto;
}
.landing-nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.landing-nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.landing-nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .landing-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(6,13,24,.98);
    border-bottom: 1px solid var(--lp-border);
    padding: .5rem 0;
  }
  .landing-nav.menu-open .landing-menu { display: flex; }
  .landing-menu a { padding: .85rem 1.5rem; border-bottom: 1px solid var(--lp-border); }
  .landing-nav-inner { position: relative; flex-wrap: wrap; }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 300;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--lp-teal), var(--lp-gold));
  box-shadow: 0 0 12px rgba(20,184,166,.6);
  transition: width .08s linear;
}

/* Float + press interactions */
.float-slow { animation: heroFloat 7s ease-in-out infinite; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.landing-body .btn.pressed { transform: translateY(0) scale(0.97); }

.landing-body .btn-gold {
  position: relative;
  overflow: hidden;
}
.landing-body .btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.landing-body .btn-gold:hover::after { transform: translateX(120%); }

/* Stagger grid items */
.stagger-child {
  opacity: 0;
  transform: translateY(20px);
}
.stagger-child.stagger-in {
  animation: staggerIn .65s ease forwards;
  animation-delay: var(--stagger, 0ms);
}
@keyframes staggerIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Micro-animations for preview mockup */
.anim-item {
  opacity: 0;
  transform: translateY(10px);
}
.anim-item.anim-play {
  animation: animSlideIn .5s ease forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes animSlideIn {
  to { opacity: 1; transform: translateY(0); }
}

.bar-grow, .mockup-chart .bar-grow {
  height: 0 !important;
  transform-origin: bottom;
}
.bar-grow.grown, .mockup-chart .bar-grow.grown {
  animation: barGrow .8s cubic-bezier(.34,1.2,.64,1) forwards;
  animation-delay: var(--delay, 0ms);
}
.chart-bar.bar-grow { height: 0 !important; }
.chart-bar.bar-grow.grown {
  animation: barGrow .85s cubic-bezier(.34,1.2,.64,1) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes barGrow {
  to { height: var(--h, 50%); }
}

.status-dot.pulse { animation: dotPulse 2s ease infinite; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

.band-stat {
  transition: transform .25s, color .25s;
  padding: .5rem;
  border-radius: 12px;
}
.band-stat.hovered { transform: scale(1.05); }
.band-stat.hovered strong { color: var(--lp-teal); }

.testimonial-card {
  transition: transform .35s ease, border-color .35s, box-shadow .35s;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,168,83,.35);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.module-card {
  transition: transform .3s, border-color .3s, background .3s;
}
.module-card:hover {
  transform: translateY(-4px) translateX(-4px);
  border-color: rgba(20,184,166,.35);
  background: rgba(20,184,166,.04);
}

.wf-step {
  transition: transform .3s, border-color .3s;
}
.wf-step:hover { transform: translateY(-4px); border-color: rgba(20,184,166,.4); }

.faq-item {
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: rgba(20,184,166,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.faq-item summary { transition: color .2s; }
.faq-item[open] summary { color: var(--lp-teal); }

.price-card { transition: transform .35s, box-shadow .35s, border-color .35s; }
.price-card:not(.featured):hover {
  transform: translateY(-6px);
  border-color: rgba(20,184,166,.3);
  box-shadow: 0 16px 32px rgba(0,0,0,.2);
}

.partners-logos span:hover {
  opacity: 1;
  color: var(--lp-teal);
  transform: scale(1.08);
}

.int-card { transition: transform .25s, border-color .25s; }
.int-card:hover { transform: translateY(-3px); }

.pipe-card { transition: transform .25s; }
.pipe-col:hover .pipe-card { transform: scale(1.02); }
.pipe-col:hover .pipe-card.highlight { box-shadow: 0 0 20px rgba(20,184,166,.2); }

.pt-row, .preview-card {
  position: relative;
  overflow: hidden;
}
.pt-row::after, .preview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease infinite;
  animation-delay: var(--delay, 0ms);
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* ── Tabs / Preview ── */
.tabs-component {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .4s, border-color .4s;
}
.tabs-component:hover {
  border-color: rgba(20,184,166,.25);
  box-shadow: 0 24px 48px rgba(0,0,0,.25), 0 0 0 1px rgba(20,184,166,.08);
}
.tabs-nav { display: flex; border-bottom: 1px solid var(--lp-border); background: rgba(0,0,0,.2); position: relative; }
.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-teal), var(--lp-blue));
  border-radius: 2px 2px 0 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(20,184,166,.5);
}
.tab-btn {
  flex: 1; padding: 1rem; background: none; border: none; color: var(--lp-muted);
  font-family: inherit; font-size: .92rem; font-weight: 600; cursor: pointer;
  border-bottom: 2px solid transparent; transition: color .25s, background .25s;
  position: relative; z-index: 1;
}
.tab-btn:hover { color: var(--lp-text); background: rgba(255,255,255,.03); }
.tab-btn.active { color: var(--lp-teal); background: rgba(20,184,166,.06); border-bottom-color: transparent; }
.tabs-panels {
  padding: 1.5rem;
  display: grid;
  grid-template-areas: 'panel';
  min-height: 300px;
}
.tab-panel {
  grid-area: panel;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.985);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
  pointer-events: none;
}
.tab-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.tab-caption { text-align: center; color: var(--lp-muted); font-size: .88rem; margin-top: 1rem; transition: opacity .3s; }

.preview-ui { display: flex; gap: 1rem; min-height: 220px; background: rgba(0,0,0,.25); border-radius: 12px; padding: 1rem; }
.preview-sidebar { width: 60px; display: flex; flex-direction: column; gap: .5rem; }
.ps-item { height: 32px; background: rgba(255,255,255,.06); border-radius: 6px; }
.ps-item.active { background: var(--lp-teal-dim); border: 1px solid rgba(20,184,166,.3); }
.preview-main { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.preview-main.full { width: 100%; }
.preview-row { display: flex; gap: .75rem; }
.preview-card { height: 60px; background: rgba(255,255,255,.06); border-radius: 8px; flex: 1; }
.preview-table { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.pt-row { height: 28px; background: rgba(255,255,255,.04); border-radius: 4px; }
.crm-kpis .preview-card {
  height: auto;
  min-height: 74px;
}
.crm-kpi-card {
  padding: .7rem .8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .2rem;
  border: 1px solid rgba(20,184,166,.2);
  background: linear-gradient(140deg, rgba(20,184,166,.1), rgba(15,23,42,.55));
}
.crm-kpi-card small {
  color: var(--lp-muted);
  font-size: .68rem;
}
.crm-kpi-card strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.1;
}
.crm-kpi-trend {
  color: #cbd5e1;
  font-size: .66rem;
}
.crm-kpi-trend.positive { color: #34d399; }
.crm-leads-list {
  gap: .55rem;
  margin-top: .1rem;
}
.crm-lead-row {
  height: auto;
  min-height: 42px;
  padding: .55rem .7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--lp-border);
  background: rgba(15,23,42,.55);
  border-radius: 8px;
}
.crm-lead-main {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.crm-lead-main strong {
  color: var(--lp-text);
  font-size: .76rem;
  font-weight: 600;
}
.crm-lead-main span {
  color: var(--lp-muted);
  font-size: .68rem;
}
.crm-status-badge {
  border-radius: 999px;
  padding: .18rem .5rem;
  font-size: .66rem;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
}
.crm-status-badge.hot {
  color: #fda4af;
  background: rgba(190,24,93,.2);
  border-color: rgba(244,63,94,.35);
}
.crm-status-badge.warm {
  color: #fcd34d;
  background: rgba(180,83,9,.18);
  border-color: rgba(234,179,8,.28);
}
.crm-status-badge.cold {
  color: #93c5fd;
  background: rgba(30,64,175,.22);
  border-color: rgba(59,130,246,.35);
}
.crm-activity-snippet {
  margin-top: .2rem;
  border-radius: 8px;
  border: 1px solid rgba(20,184,166,.25);
  background: rgba(20,184,166,.09);
  color: #99f6e4;
  padding: .55rem .7rem;
  font-size: .72rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.crm-activity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 0 4px rgba(45,212,191,.15);
  flex-shrink: 0;
}
.preview-pipeline { display: flex; gap: 1rem; height: 100%; align-items: flex-start; }
.pipe-col { flex: 1; }
.pipe-col span { display: block; font-size: .75rem; color: var(--lp-muted); margin-bottom: .5rem; text-align: center; }
.pipe-card { height: 50px; background: rgba(255,255,255,.06); border-radius: 8px; margin-bottom: .5rem; }
.pipe-card.highlight { background: var(--lp-teal-dim); border: 1px solid rgba(20,184,166,.3); }
.sales-stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}
.sales-stage-card {
  background: linear-gradient(160deg, rgba(22,34,54,.9), rgba(15,26,46,.95));
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: .9rem;
  min-height: 108px;
}
.sales-stage-card.stage-contract {
  border-color: rgba(20,184,166,.35);
  box-shadow: 0 0 0 1px rgba(20,184,166,.12) inset;
}
.sales-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}
.sales-stage-head strong {
  color: #fff;
  font-size: .92rem;
}
.sales-stage-chip {
  padding: .15rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--lp-border);
  color: var(--lp-muted);
  font-size: .68rem;
}
.sales-stage-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-teal);
  margin-bottom: .25rem;
}
.sales-stage-card small {
  color: var(--lp-muted);
  font-size: .74rem;
  line-height: 1.4;
}
.sales-visual-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: .85rem;
}
.sales-funnel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: .85rem .75rem .7rem;
  min-height: 150px;
}
.sales-funnel-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}
.sales-funnel-stage span {
  font-size: .7rem;
  color: var(--lp-muted);
}
.sales-funnel-bar {
  width: 100%;
  max-width: 26px;
  border-radius: 7px 7px 3px 3px;
  height: var(--h, 50%);
  background: rgba(148,163,184,.25);
}
.sales-funnel-bar.active {
  background: linear-gradient(to top, var(--lp-teal), var(--lp-blue));
  box-shadow: 0 8px 18px rgba(20,184,166,.24);
}
.sales-recent-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sales-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: .65rem .75rem;
}
.sales-recent-item strong {
  display: block;
  color: #fff;
  font-size: .8rem;
  margin-bottom: .15rem;
}
.sales-recent-item span {
  color: var(--lp-muted);
  font-size: .72rem;
}
.sales-recent-item em {
  font-style: normal;
  color: var(--lp-gold);
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}
.preview-int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.int-card { background: rgba(255,255,255,.04); border: 1px solid var(--lp-border); border-radius: 10px; padding: 1rem; display: flex; justify-content: space-between; align-items: center; font-size: .85rem; }
.int-card.connected { border-color: rgba(20,184,166,.3); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-left: .35rem; }
.status-dot.green { background: #34d399; }
.status-dot.grey { background: #64748b; }
.preview-chart-lg { display: flex; align-items: flex-end; gap: .5rem; height: 160px; padding: 1rem; flex: 1; }
.chart-bar { flex: 1; background: rgba(255,255,255,.08); border-radius: 4px 4px 0 0; height: var(--h, 50%); transition: background .3s; }
.chart-bar.active { background: linear-gradient(to top, var(--lp-teal), var(--lp-blue)); }
.chart-bar:hover { filter: brightness(1.15); }
.reports-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.reports-kpi-card {
  min-height: 86px;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
  background: rgba(15,23,42,.58);
  padding: .75rem .85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
}
.reports-kpi-card.highlight {
  border-color: rgba(20,184,166,.35);
  background: linear-gradient(140deg, rgba(20,184,166,.14), rgba(15,23,42,.75));
}
.reports-kpi-card small {
  color: var(--lp-muted);
  font-size: .68rem;
}
.reports-kpi-card strong {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.2;
}
.reports-kpi-trend {
  color: #cbd5e1;
  font-size: .66rem;
}
.reports-kpi-trend.positive { color: #34d399; }
.reports-visual-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: .75rem;
}
.reports-chart-shell {
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: rgba(2,6,23,.38);
  padding: .75rem;
}
.reports-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .3rem;
  gap: .5rem;
}
.reports-chart-head strong {
  color: var(--lp-text);
  font-size: .78rem;
  font-weight: 600;
}
.reports-chart-head span {
  color: var(--lp-muted);
  font-size: .66rem;
}
.preview-chart-lg.reports-chart {
  height: 138px;
  background: rgba(15,23,42,.55);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 10px;
}
.reports-side-snippets {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.reports-insights,
.reports-top-projects {
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: rgba(15,23,42,.55);
  padding: .7rem .75rem;
}
.reports-insights h4,
.reports-top-projects h4 {
  color: #fff;
  font-size: .74rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.reports-insights ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.reports-insights li {
  position: relative;
  color: var(--lp-muted);
  font-size: .68rem;
  line-height: 1.55;
  padding-right: .7rem;
}
.reports-insights li::before {
  content: '';
  position: absolute;
  right: 0;
  top: .45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lp-teal);
}
.reports-top-projects {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.reports-project-item {
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 8px;
  background: rgba(2,6,23,.35);
  padding: .45rem .55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.reports-project-item strong {
  color: var(--lp-text);
  font-size: .68rem;
}
.reports-project-item span {
  color: #99f6e4;
  font-size: .66rem;
}

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  padding: 2rem; margin: 0;
}
.testimonial-card .stars { color: var(--lp-gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--lp-text); line-height: 1.75; font-size: .95rem; margin-bottom: 1.25rem; }
.testimonial-card footer strong { display: block; color: #fff; margin-bottom: .2rem; }
.testimonial-card footer span { font-size: .82rem; color: var(--lp-muted); }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.price-card {
  background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: 20px;
  padding: 2rem; position: relative;
}
.price-card.featured {
  border-color: rgba(212,168,83,.4);
  background: linear-gradient(160deg, var(--lp-surface), rgba(212,168,83,.06));
  transform: scale(1.03);
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lp-gold), #b8862d); color: #0a0f18;
  font-size: .72rem; font-weight: 700; padding: .3rem .85rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: #fff; }
.price-amount { margin-bottom: .5rem; }
.price-amount strong { font-size: 2rem; font-weight: 800; color: #fff; }
.price-amount span { font-size: .85rem; color: var(--lp-muted); margin-right: .25rem; }
.price-desc { color: var(--lp-muted); font-size: .88rem; margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 1.75rem; }
.price-features li {
  padding: .5rem 1.25rem .5rem 0; color: var(--lp-text); font-size: .9rem; position: relative;
}
.price-features li::before { content: '✓'; position: absolute; right: 0; color: var(--lp-teal); font-weight: 700; }
.landing-body .btn-block { width: 100%; justify-content: center; }

/* ── Compare table ── */
.compare-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--lp-border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compare-table th, .compare-table td { padding: 1rem 1.25rem; text-align: center; border-bottom: 1px solid var(--lp-border); }
.compare-table th:first-child, .compare-table td:first-child { text-align: right; }
.compare-table th { background: rgba(0,0,0,.3); color: var(--lp-muted); font-weight: 600; }
.compare-table .highlight-col { background: rgba(20,184,166,.08); color: var(--lp-teal); font-weight: 600; }
.compare-table .yes { color: #34d399; font-weight: 700; }
.compare-table .no { color: #64748b; }
.compare-table .partial { color: var(--lp-gold); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: 12px;
  margin-bottom: .75rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.15rem 1.5rem; cursor: pointer; font-weight: 600; color: #fff;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--lp-teal); font-size: 1.25rem; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.5rem 1.15rem; color: var(--lp-muted); line-height: 1.75; font-size: .92rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-size: 1.75rem; margin-bottom: .75rem; color: #fff; }
.contact-info > p { color: var(--lp-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.contact-details { list-style: none; margin-bottom: 2rem; }
.contact-details li { padding: .5rem 0; color: var(--lp-muted); font-size: .92rem; }
.contact-details strong { color: var(--lp-text); margin-left: .5rem; }
.contact-stats { display: flex; gap: 1.5rem; }
.contact-stats div { text-align: center; }
.contact-stats strong { display: block; font-size: 1.75rem; color: var(--lp-teal); }
.contact-stats span { font-size: .78rem; color: var(--lp-muted); }
.contact-form-wrap {
  background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: 20px; padding: 2rem;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { margin-bottom: 1rem; }
.cf-group label { display: block; font-size: .85rem; color: var(--lp-muted); margin-bottom: .35rem; }
.cf-group input, .cf-group textarea {
  width: 100%; padding: .75rem 1rem; background: rgba(0,0,0,.25);
  border: 1px solid var(--lp-border); border-radius: 10px; color: var(--lp-text);
  font-family: inherit; font-size: .92rem;
}
.cf-group input:focus, .cf-group textarea:focus { outline: none; border-color: var(--lp-teal); }
.alert-success-box { background: rgba(52,211,153,.12); border: 1px solid #34d399; color: #34d399; padding: .75rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-size: .9rem; }
.alert-error-box { background: rgba(239,68,68,.12); border: 1px solid #ef4444; color: #ef4444; padding: .75rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-size: .9rem; }

/* ── Newsletter ── */
.footer-newsletter { padding: 1.5rem 0 0; margin-top: 1.5rem; border-top: 1px solid var(--lp-border); }
.newsletter-form label { display: block; font-size: .85rem; color: var(--lp-muted); margin-bottom: .5rem; }
.newsletter-row { display: flex; gap: .5rem; }
.newsletter-row input {
  flex: 1; padding: .65rem 1rem; background: rgba(255,255,255,.04);
  border: 1px solid var(--lp-border); border-radius: 8px; color: var(--lp-text); font-family: inherit;
}
.newsletter-form small { display: block; margin-top: .5rem; color: var(--lp-teal); font-size: .8rem; }
.landing-body .btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* ── Live marketplace /projects/live ── */
.marketplace-nav { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); background: rgba(6,13,24,.85); border-bottom: 1px solid var(--lp-border); }
.marketplace-nav .landing-menu a.active { color: var(--lp-teal); }
.marketplace-hero { padding: 3rem 0 1.5rem; text-align: center; }
.marketplace-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: .75rem 0; }
.last-sync { font-size: .82rem; color: var(--lp-muted); margin-top: .75rem; }
.marketplace-filters { padding: 0 0 1.5rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; align-items: center; }
.filter-bar select {
    padding: .55rem .85rem; border-radius: 10px; border: 1px solid var(--lp-border);
    background: var(--lp-surface); color: var(--lp-text); font-family: inherit; min-width: 130px;
}
.marketplace-grid-section { padding: 0 0 3rem; }
.marketplace-stats { margin-bottom: 1.25rem; color: var(--lp-muted); font-size: .88rem; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.project-card {
    background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: 18px;
    overflow: hidden; transition: transform .22s, border-color .22s, box-shadow .22s;
}
.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20,184,166,.35);
    box-shadow: 0 16px 34px rgba(2, 6, 23, .32);
}
.project-card-visual {
    aspect-ratio: 16 / 10;
    min-height: 170px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, rgba(20,184,166,.25), rgba(59,130,246,.2));
    display: flex; align-items: flex-end; padding: 1rem;
}
.project-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
    z-index: -2;
}
.project-card:hover .project-card-image {
    transform: scale(1.04);
}
.project-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, .08) 0%, rgba(2, 6, 23, .58) 100%);
    z-index: -1;
}
.project-card-visual::before {
    content: attr(data-city); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-size: 2.5rem; font-weight: 700; opacity: .12; color: #fff;
}
.project-card-visual.has-image::before {
    opacity: 0;
}
.project-card-visual.image-error::before {
    opacity: .12;
}
.project-status {
    position: absolute; top: .75rem; right: .75rem; padding: .25rem .65rem;
    border-radius: 999px; font-size: .72rem; font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
    backdrop-filter: blur(4px);
}
.status-active { background: rgba(16,185,129,.2); color: #34d399; }
.status-launching { background: rgba(59,130,246,.2); color: #60a5fa; }
.status-planning { background: rgba(148,163,184,.2); color: #cbd5e1; }
.status-sold { background: rgba(239,68,68,.2); color: #f87171; }
.status-done { background: rgba(167,139,250,.2); color: #c4b5fd; }
.project-units-badge {
    font-size: .75rem; background: rgba(0,0,0,.35); padding: .25rem .5rem; border-radius: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,.4);
    backdrop-filter: blur(3px);
}
.project-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.project-card-body h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.project-developer { color: var(--lp-teal); font-size: .85rem; margin-bottom: .25rem; }
.project-location { color: var(--lp-muted); font-size: .82rem; margin-bottom: .65rem; }
.project-price { font-size: 1.1rem; font-weight: 700; color: var(--lp-gold); margin-bottom: .65rem; }
.project-price.muted { color: var(--lp-muted); font-weight: 500; font-size: .9rem; }
.project-price small { font-size: .75rem; font-weight: 500; }
.project-meta { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .65rem; }
.project-meta li { font-size: .75rem; background: var(--lp-surface-2); padding: .2rem .5rem; border-radius: 6px; color: var(--lp-muted); }
.project-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .65rem; }
.project-tags span { font-size: .7rem; padding: .15rem .45rem; border: 1px solid var(--lp-border); border-radius: 4px; color: var(--lp-muted); }
.project-desc { font-size: .82rem; color: var(--lp-muted); line-height: 1.5; }
.empty-marketplace { text-align: center; padding: 3rem; color: var(--lp-muted); }
.marketplace-cta { padding: 2rem 0; text-align: center; border-top: 1px solid var(--lp-border); color: var(--lp-muted); }
.marketplace-cta a { color: var(--lp-teal); }
.compact-footer { padding: 1.5rem 0; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .15s; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid,
  .integrations-banner,
  .ai-banner,
  .contact-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .wf-arrow { display: none; }
  .workflow-steps { flex-direction: column; align-items: center; }
  .wf-step { max-width: 100%; width: 100%; }
  .price-card.featured { transform: none; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .preview-int-grid { grid-template-columns: 1fr; }
  .tabs-nav { flex-wrap: wrap; }
  .crm-kpis { flex-direction: column; }
  .reports-kpi-grid { grid-template-columns: 1fr; }
  .reports-visual-row { grid-template-columns: 1fr; }
  .sales-stage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sales-visual-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .landing-hero { padding: 3rem 0 2rem; }
  .mockup-stats { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .crm-lead-row { align-items: flex-start; gap: .5rem; }
  .crm-status-badge { margin-top: .1rem; }
  .crm-activity-snippet { font-size: .68rem; }
  .reports-chart-head { flex-direction: column; align-items: flex-start; }
  .reports-project-item { flex-direction: column; align-items: flex-start; }
  .sales-stage-grid { grid-template-columns: 1fr; }
  .sales-recent-item { flex-direction: column; align-items: flex-start; }
}
