*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0A0E2E;
  --navy-mid: #111843;
  --navy-light: #1a2560;
  --pink: #FF4FA3;
  --pink-light: #FF7FC4;
  --purple: #7C5BF7;
  --purple-light: #A98BFF;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.65);
  --text-dim: rgba(255,255,255,0.4);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.09);
  --section-gap: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 64px;
  background: rgba(10, 14, 46, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

/* Logo mark — white plate behind the artwork so it reads cleanly on the dark nav */
.nav-logo-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
  overflow: hidden;
}
.nav-logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--pink-light) !important; color: var(--white) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(124,91,247,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,79,163,0.12);
  border: 1px solid rgba(255,79,163,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px; font-weight: 500;
  color: var(--pink-light);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--pink); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 820px;
  margin: 0 auto 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px; margin: 0 auto 44px;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 72px;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--pink-light); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.hero-stats {
  display: flex; align-items: center; gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.stat-num span { color: var(--pink); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* CLIENTS / DEMO */
.demo-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 24px 64px;
  text-align: center;
}
.demo-bar p {
  font-size: 13px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.demo-links {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.demo-link {
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 20px; border-radius: 8px;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.demo-link:hover { border-color: var(--pink); color: var(--white); }
.demo-link .tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  background: rgba(255,79,163,0.2); color: var(--pink-light);
  padding: 2px 8px; border-radius: 4px; text-transform: uppercase;
}
.demo-placeholder {
  border-style: dashed;
  opacity: 0.5;
  cursor: default;
}

/* SECTIONS */
section { padding: var(--section-gap) 64px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: rgba(255,79,163,0.4);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(255,79,163,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 20px;
}
.service-price {
  font-size: 22px; font-weight: 800;
  color: var(--pink);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.service-price small {
  font-size: 13px; font-weight: 400; color: var(--text-muted);
}
.service-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  background: rgba(124,91,247,0.15); color: var(--purple-light);
  padding: 4px 10px; border-radius: 6px;
  text-transform: uppercase; margin-bottom: 14px;
}
.service-tag.featured {
  background: rgba(255,79,163,0.15); color: var(--pink-light);
}
.service-list {
  list-style: none; margin: 16px 0 0;
}
.service-list li {
  font-size: 14px; color: var(--text-muted);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-start; gap: 10px;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓'; color: var(--pink); font-weight: 700;
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
}
.card-featured {
  border-color: rgba(255,79,163,0.3);
  background: rgba(255,79,163,0.04);
}

/* WHY US */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point {
  display: flex; gap: 20px;
}
.why-num {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,79,163,0.12);
  border: 1px solid rgba(255,79,163,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--pink);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.why-point h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 6px;
}
.why-point p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.why-visual {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px; padding: 36px;
}
.metrics-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.metric-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 20px;
  text-align: center;
}
.metric-box .big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px; font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  display: block;
}
.metric-box .label {
  font-size: 12px; color: var(--text-muted);
  margin-top: 4px; line-height: 1.4;
}

/* REAL ESTATE */
.re-section {
  background: rgba(124,91,247,0.06);
  border-top: 1px solid rgba(124,91,247,0.15);
  border-bottom: 1px solid rgba(124,91,247,0.15);
}
.re-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.re-features { display: flex; flex-direction: column; gap: 20px; }
.re-feat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 22px 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.re-feat-icon {
  font-size: 24px; flex-shrink: 0; width: 42px;
  display: flex; align-items: center; justify-content: center;
}
.re-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.re-feat p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* WORKFLOW */
.workflow-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 56px;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 28px 24px;
  position: relative;
}
.step::after {
  content: '→';
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim); font-size: 18px;
  z-index: 1;
}
.step:last-child::after { display: none; }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px; font-weight: 800;
  color: rgba(255,79,163,0.15);
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 12px;
}
.step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* CTA */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(124,91,247,0.12) 0%, rgba(255,79,163,0.08) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-section .section-title { max-width: 600px; margin: 0 auto 16px; }
.cta-section .section-sub { margin: 0 auto 44px; }
.cta-contact {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 44px; flex-wrap: wrap;
}
.contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-muted);
}
.contact-item a { color: var(--white); text-decoration: none; font-weight: 600; }
.contact-item a:hover { color: var(--pink-light); }

/* FOOTER */
footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--card-border);
  padding: 36px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer p { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .why-grid, .re-grid { grid-template-columns: 1fr; gap: 40px; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
  .demo-bar { padding: 24px; }
}
@media (max-width: 560px) {
  .hero { padding: 120px 20px 60px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .workflow-steps { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
}

/* LEGAL PAGES (Privacy Policy / Terms & Conditions) */
.legal-hero {
  padding: 140px 64px 48px;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}
.legal-hero .section-title { margin-bottom: 8px; }
.legal-updated {
  font-size: 13px;
  color: var(--text-dim);
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 40px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--pink-light); }

.legal-disclaimer {
  background: rgba(124,91,247,0.08);
  border: 1px solid rgba(124,91,247,0.25);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.legal-disclaimer strong { color: var(--white); }

.legal-toc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc-counter;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.legal-toc li {
  counter-increment: toc-counter;
  font-size: 14px;
}
.legal-toc li::before {
  content: counter(toc-counter) ". ";
  color: var(--text-dim);
  font-weight: 600;
}
.legal-toc a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-toc a:hover { color: var(--pink-light); }

.legal-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 44px 0 16px;
  scroll-margin-top: 100px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text-muted);
}
.legal-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}
.legal-body ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.legal-body ul li:last-child { border-bottom: none; }
.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
}
.legal-body ul li strong { color: var(--white); }
.legal-body a { color: var(--pink-light); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .legal-hero { padding: 120px 24px 40px; }
  .legal-body { padding: 48px 0 24px; }
  .legal-toc ol { grid-template-columns: 1fr; }
}
