/* PropertySync public marketing site */
:root {
  --mkt-ink: #0c1f16;
  --mkt-forest: #0b2e1d;
  --mkt-leaf: #1e5d3a;
  --mkt-moss: #2d7a4f;
  --mkt-mint: #d8f0e3;
  --mkt-cream: #f3f7f4;
  --mkt-paper: #fafcfb;
  --mkt-muted: #5a6b62;
  --mkt-line: rgba(11, 46, 29, 0.12);
  --mkt-accent: #c4a35a;
  --mkt-font-display: "Fraunces", "Georgia", serif;
  --mkt-font-body: "Outfit", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

.mkt-body {
  margin: 0;
  font-family: var(--mkt-font-body);
  color: var(--mkt-ink);
  background: var(--mkt-paper);
  line-height: 1.55;
}

.mkt-body h1,
.mkt-body h2,
.mkt-body h3 {
  font-family: var(--mkt-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--mkt-ink);
}

/* ——— Nav ——— */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 252, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mkt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--mkt-forest);
}

.mkt-brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, var(--mkt-leaf), var(--mkt-forest));
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  display: grid;
  place-items: center;
}

.mkt-brand-name {
  font-family: var(--mkt-font-display);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1;
}

.mkt-nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-nav-links a {
  text-decoration: none;
  color: var(--mkt-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.mkt-nav-links a:hover,
.mkt-nav-links a.active { color: var(--mkt-forest); }

.mkt-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mkt-nav-toggle {
  display: inline-flex;
  border: 1px solid var(--mkt-line);
  background: #fff;
  border-radius: 0.45rem;
  padding: 0.35rem 0.55rem;
  color: var(--mkt-forest);
  cursor: pointer;
}

@media (min-width: 900px) {
  .mkt-nav-links { display: flex; }
  .mkt-nav-toggle { display: none; }
}

.mkt-nav-drawer {
  display: none;
  border-top: 1px solid var(--mkt-line);
  padding: 0.75rem 1.25rem 1rem;
  background: var(--mkt-paper);
}

.mkt-nav-drawer.open { display: block; }

.mkt-nav-drawer a {
  display: block;
  padding: 0.55rem 0;
  text-decoration: none;
  color: var(--mkt-ink);
  font-weight: 500;
}

@media (min-width: 900px) {
  .mkt-nav-drawer { display: none !important; }
}

/* ——— Buttons ——— */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.mkt-btn:hover { transform: translateY(-1px); }

.mkt-btn-primary {
  background: var(--mkt-leaf);
  color: #fff;
  border-color: var(--mkt-leaf);
}

.mkt-btn-primary:hover {
  background: var(--mkt-forest);
  border-color: var(--mkt-forest);
  color: #fff;
}

.mkt-btn-ghost {
  background: transparent;
  color: var(--mkt-forest);
  border-color: var(--mkt-line);
}

.mkt-btn-ghost:hover {
  background: var(--mkt-mint);
  color: var(--mkt-forest);
}

.mkt-btn-light {
  background: #fff;
  color: var(--mkt-forest);
}

.mkt-btn-light:hover {
  background: var(--mkt-mint);
  color: var(--mkt-forest);
}

.mkt-btn-lg {
  padding: 0.75rem 1.35rem;
  font-size: 1rem;
}

.mkt-btn-ghost-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.mkt-btn-ghost-on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mkt-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Layout helpers ——— */
.mkt-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.mkt-section { padding: 4.5rem 0; }
.mkt-section-alt { background: var(--mkt-cream); }

.mkt-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-moss);
}

.mkt-lead {
  font-size: 1.05rem;
  color: var(--mkt-muted);
  max-width: 38rem;
}

.mkt-section-title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 0 0 0.75rem;
}

.mkt-section-sub {
  color: var(--mkt-muted);
  max-width: 36rem;
  margin: 0 0 2rem;
}

/* ——— Home hero (full-bleed property photo) ——— */
.mkt-hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--mkt-forest);
}

.mkt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 18, 0.94) 0%, rgba(11, 46, 29, 0.78) 42%, rgba(11, 46, 29, 0.45) 100%),
    url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=2000&q=80") center / cover no-repeat;
  transform: scale(1.04);
  animation: mkt-hero- ken 18s ease-out both;
}

.mkt-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 14px,
    rgba(255, 255, 255, 0.04) 14px,
    rgba(255, 255, 255, 0.04) 15px
  );
  pointer-events: none;
}

@keyframes mkt-hero-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.mkt-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 4rem;
}

.mkt-hero h1,
.mkt-hero h2,
.mkt-hero h3,
.mkt-page-hero h1,
.mkt-page-hero h2,
.mkt-page-hero h3,
.mkt-cta-band h1,
.mkt-cta-band h2,
.mkt-cta-band h3 {
  color: #fff;
}

.mkt-hero-brand {
  font-family: var(--mkt-font-display);
  font-size: clamp(2.8rem, 7.5vw, 4.5rem);
  font-weight: 650;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  animation: mkt-rise 0.7s ease both;
}

.mkt-hero-title {
  font-family: var(--mkt-font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  margin: 0 0 0.65rem;
  max-width: 28rem;
  color: #fff;
  animation: mkt-rise 0.7s ease 0.08s both;
}

.mkt-hero-sub {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  animation: mkt-rise 0.7s ease 0.16s both;
}

.mkt-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: mkt-rise 0.7s ease 0.24s both;
}

@keyframes mkt-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ——— Pain / pillars / steps ——— */
.mkt-pain-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mkt-pain-list { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.mkt-pain-list li {
  padding-top: 0.85rem;
  border-top: 2px solid var(--mkt-leaf);
}

.mkt-pain-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--mkt-font-display);
  font-size: 1.15rem;
}

.mkt-pain-list span {
  color: var(--mkt-muted);
  font-size: 0.95rem;
}

.mkt-pillars {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .mkt-pillars { grid-template-columns: repeat(4, 1fr); }
}

.mkt-pillar h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.mkt-pillar p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.95rem;
}

.mkt-pillar-num {
  font-family: var(--mkt-font-display);
  font-size: 0.85rem;
  color: var(--mkt-accent);
  font-weight: 650;
  margin-bottom: 0.35rem;
}

.mkt-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .mkt-steps { grid-template-columns: repeat(2, 1fr); }
}

.mkt-steps.mkt-steps-single {
  grid-template-columns: 1fr;
  max-width: 40rem;
}

.mkt-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--mkt-mint);
  color: var(--mkt-forest);
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.mkt-steps strong { display: block; margin-bottom: 0.2rem; }
.mkt-steps span { color: var(--mkt-muted); font-size: 0.95rem; }

.mkt-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .mkt-split { grid-template-columns: 1fr 1fr; align-items: start; }
}

.mkt-role-row { display: grid; gap: 1.25rem; }

.mkt-role-row article {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-role-row h3 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.mkt-role-row p {
  margin: 0;
  color: var(--mkt-muted);
}

/* ——— Module list (features / home) ——— */
.mkt-module-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--mkt-line);
}

@media (min-width: 768px) {
  .mkt-module-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mkt-module {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--mkt-line);
}

@media (min-width: 768px) {
  .mkt-module:nth-child(odd) { padding-right: 1.5rem; }
  .mkt-module:nth-child(even) { padding-left: 1.5rem; }
}

.mkt-module h3 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.mkt-module p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.95rem;
}

/* ——— Product preview strip ——— */
.mkt-product {
  position: relative;
  overflow: hidden;
}

.mkt-product-visual {
  margin-top: 2rem;
  border: 1px solid var(--mkt-line);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--mkt-forest);
  box-shadow: 0 24px 48px rgba(11, 46, 29, 0.18);
  animation: mkt-rise 0.8s ease 0.1s both;
}

.mkt-product-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  background: #082418;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.mkt-product-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.mkt-product-dot:nth-child(1) { background: #c4a35a; }
.mkt-product-body {
  display: grid;
  grid-template-columns: 11rem 1fr;
  min-height: 240px;
}

@media (max-width: 640px) {
  .mkt-product-body { grid-template-columns: 1fr; }
  .mkt-product-side { display: none; }
}

.mkt-product-side {
  background: #0b2e1d;
  padding: 1rem 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.mkt-product-side strong {
  display: block;
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
}

.mkt-product-side span {
  display: block;
  padding: 0.35rem 0.45rem;
  margin-bottom: 0.2rem;
  border-radius: 0.3rem;
}

.mkt-product-side span.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mkt-product-main {
  background: #f3f7f4;
  padding: 1.1rem 1.15rem;
  color: var(--mkt-ink);
}

.mkt-product-main h4 {
  margin: 0 0 0.25rem;
  font-family: var(--mkt-font-display);
  font-size: 1.15rem;
}

.mkt-product-main .mkt-muted {
  color: var(--mkt-muted);
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.mkt-product-rows {
  display: grid;
  gap: 0.45rem;
}

.mkt-product-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.7fr;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 0.35rem;
  font-size: 0.8rem;
}

.mkt-product-row strong { font-weight: 600; }
.mkt-product-row em {
  font-style: normal;
  color: var(--mkt-moss);
  font-weight: 600;
}

/* ——— Atmosphere band ——— */
.mkt-atmosphere {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.mkt-atmosphere-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 28, 18, 0.88) 0%, rgba(11, 46, 29, 0.45) 100%),
    url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.mkt-atmosphere .mkt-wrap {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.mkt-atmosphere h2 {
  color: #fff;
  margin: 0 0 0.5rem;
  max-width: 22rem;
}

.mkt-atmosphere p {
  margin: 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ——— Feature blocks ——— */
.mkt-feature-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-feature-block:last-child { border-bottom: 0; }

.mkt-feature-block ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--mkt-muted);
}

.mkt-feature-block li { margin-bottom: 0.4rem; }

/* ——— FAQ ——— */
.mkt-faq details {
  border-bottom: 1px solid var(--mkt-line);
  padding: 1rem 0;
}

.mkt-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--mkt-ink);
}

.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq summary::after { content: "+"; color: var(--mkt-moss); font-weight: 700; }
.mkt-faq details[open] summary::after { content: "–"; }

.mkt-faq details p {
  margin: 0.75rem 0 0;
  color: var(--mkt-muted);
  max-width: 40rem;
}

/* ——— Inner page hero ——— */
.mkt-page-hero {
  background: var(--mkt-forest);
  color: #fff;
  padding: 3.5rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.mkt-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(196, 163, 90, 0.2), transparent 55%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.15), transparent 50%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=70") right center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.mkt-page-hero .mkt-wrap { position: relative; }

.mkt-page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.65rem;
}

.mkt-page-hero p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ——— CTA / footer ——— */
.mkt-cta-band {
  background: linear-gradient(135deg, var(--mkt-forest), var(--mkt-leaf));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.mkt-cta-band h2 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.mkt-cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.78);
}

.mkt-cta-band .mkt-hero-ctas { justify-content: center; }

.mkt-footer {
  background: var(--mkt-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
}

.mkt-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mkt-footer a:hover { color: #fff; }

.mkt-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.mkt-footer-brand {
  font-family: var(--mkt-font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.mkt-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.mkt-footer-support {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 11rem;
}

.mkt-footer-support-label {
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
}

.mkt-support-link:hover { color: #fff; }

.mkt-support-link i {
  width: 1.15rem;
  text-align: center;
  font-size: 1rem;
}

.mkt-support-whatsapp i { color: #25d366; }

.mkt-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Floating call / WhatsApp */
.mkt-support-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mkt-support-float-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mkt-support-float-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.mkt-support-float-call {
  background: var(--mkt-leaf);
}

.mkt-support-float-wa {
  background: #25d366;
}

.mkt-support-float-btn i { font-size: 1.15rem; }

.mkt-mt-2 { margin-top: 0.5rem; }
.mkt-mt-4 { margin-top: 1.5rem; }
.mkt-mb-0 { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  .mkt-hero-bg,
  .mkt-hero-brand,
  .mkt-hero-title,
  .mkt-hero-sub,
  .mkt-hero-ctas,
  .mkt-product-visual,
  .mkt-support-float-btn {
    animation: none !important;
  }
}
