/* PropertyScoutAU Professional Page — v20260613a */
:root {
  --pt-navy: #07111f;
  --pt-ink: #0f172a;
  --pt-blue: #2563eb;
  --pt-cyan: #06b6d4;
  --pt-green: #10b981;
  --pt-border: rgba(148, 163, 184, 0.22);
  --pt-muted: #64748b;
}

/* ── Shell ─────────────────────────────────────────────── */
.pt-shell { max-width: 1180px; margin: 0 auto; padding: 2.5rem 1.25rem 5rem; }
.pt-shell *, .pt-shell *::before, .pt-shell *::after { box-sizing: border-box; }
.pt-shell a { text-decoration: none; }

/* ── Eyebrow ───────────────────────────────────────────── */
.pt-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #93c5fd; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.74rem;
}
.pt-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pt-blue), var(--pt-cyan));
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

/* ── Hero ──────────────────────────────────────────────── */
.pt-hero {
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(37,99,235,0.4), transparent 40%),
    radial-gradient(ellipse at 20% 100%, rgba(16,185,129,0.2), transparent 40%),
    linear-gradient(135deg, #07111f, #0f1f3d 50%, #0d2520);
  box-shadow: 0 32px 100px rgba(7,17,31,0.5);
  color: #fff;
}
.pt-hero-inner { max-width: 780px; }
.pt-hero h1 {
  max-width: 880px; margin: 0.5rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02; letter-spacing: -0.05em;
  font-weight: 950; color: #fff;
}
.pt-hero p {
  max-width: 700px; margin: 1.1rem 0 0;
  color: #cbd5e1; font-size: 1.1rem; line-height: 1.65;
}
.pt-trust-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.5rem;
}
.pt-trust-row span {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem; color: #bfdbfe; font-weight: 600;
}
.pt-hero-metrics {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pt-hero-stat strong {
  display: block; font-size: 1.6rem;
  font-weight: 950; color: #fff; letter-spacing: -0.04em;
}
.pt-hero-stat span {
  display: block; color: #94a3b8; font-size: 0.84rem; margin-top: 0.1rem;
}

/* ── Proof strip ───────────────────────────────────────── */
.pt-proof-strip {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.6rem; padding: 1rem 0; margin: 0.5rem 0;
}
.pt-proof-label { font-size: 0.82rem; color: var(--pt-muted); font-weight: 600; }
.pt-proof-badge {
  background: #f1f5f9; border: 1px solid #e2e8f0;
  border-radius: 999px; padding: 0.25rem 0.75rem;
  font-size: 0.78rem; font-weight: 700; color: #334155;
}

/* ── Sections ──────────────────────────────────────────── */
.pt-section { margin-top: 4rem; }
.pt-section-head { margin-bottom: 2rem; }
.pt-section-head h2 {
  margin: 0.35rem 0 0; color: var(--pt-ink);
  font-size: clamp(1.6rem, 3vw, 2.5rem); letter-spacing: -0.04em;
}
.pt-section-head p {
  margin: 0.6rem 0 0; color: var(--pt-muted);
  line-height: 1.65; max-width: 740px;
}

/* ── Grids ─────────────────────────────────────────────── */
.pt-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.pt-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.pt-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }

/* ── Cards ─────────────────────────────────────────────── */
.pt-card, .pt-tool-card, .pt-table-card {
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
  padding: 1.5rem;
}
.pt-card-hover {
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.pt-card-hover:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.12);
}
.pt-card-icon { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }
.pt-card h3, .pt-tool-card h3 {
  margin: 0.3rem 0 0.5rem; color: var(--pt-ink);
  font-size: 1.05rem; font-weight: 800;
}
.pt-card p, .pt-tool-card p {
  margin: 0; color: var(--pt-muted); line-height: 1.55; font-size: 0.92rem;
}
.pt-card.dark {
  background: linear-gradient(135deg, #0f172a, #111827);
  border-color: rgba(255,255,255,0.1);
  color: #e5e7eb;
}
.pt-card.dark p { color: #cbd5e1; }
.pt-card.dark h2, .pt-card.dark h3 { color: #fff; }

/* ── Feature list ──────────────────────────────────────── */
.pt-feature-list {
  list-style: none; padding: 0; margin: 0.85rem 0 0;
}
.pt-feature-list li {
  padding: 0.3rem 0; font-size: 0.88rem; color: #475569;
  padding-left: 1.2rem; position: relative;
}
.pt-feature-list li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--pt-green); font-weight: 800;
}
.pt-feature-list-light li { color: #94a3b8; }
.pt-feature-list-light li::before { color: #4ade80; }

/* ── Badge ─────────────────────────────────────────────── */
.pt-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.28rem 0.65rem;
  background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe;
  font-weight: 900; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── Workflow ──────────────────────────────────────────── */
.pt-workflow {
  display: flex; align-items: flex-start; gap: 0.5rem; flex-wrap: wrap;
}
.pt-workflow-step {
  flex: 1; min-width: 180px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid #e2e8f0; border-radius: 20px; padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}
.pt-workflow-num {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
  color: #1d4ed8; font-weight: 950; margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.pt-workflow-body h3 { margin: 0 0 0.35rem; color: #0f172a; font-size: 0.95rem; font-weight: 800; }
.pt-workflow-body p { margin: 0; color: var(--pt-muted); font-size: 0.85rem; line-height: 1.5; }
.pt-workflow-arrow {
  color: #cbd5e1; font-size: 1.4rem; padding-top: 1.25rem; flex-shrink: 0;
  align-self: center;
}

/* ── Features grid ─────────────────────────────────────── */
.pt-features-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem;
}
.pt-feature-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
  padding: 1.25rem; transition: border-color 0.18s, transform 0.18s;
}
.pt-feature-card:hover { border-color: #93c5fd; transform: translateY(-2px); }
.pt-feature-icon { font-size: 1.4rem; margin-bottom: 0.5rem; display: block; }
.pt-feature-card h4 { margin: 0 0 0.4rem; color: #1e293b; font-size: 0.92rem; font-weight: 800; }
.pt-feature-card p { margin: 0; color: var(--pt-muted); font-size: 0.84rem; line-height: 1.5; }

/* ── API section ───────────────────────────────────────── */
.pt-api-section {
  background: linear-gradient(135deg, #07111f, #0f1f3d);
  border-radius: 28px; padding: 3rem; border: 1px solid rgba(255,255,255,0.1);
}
.pt-api-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.pt-api-copy .pt-eyebrow { color: #93c5fd; }
.pt-api-copy h2 { color: #fff; margin: 0.35rem 0 0; font-size: clamp(1.4rem, 2.5vw, 2rem); letter-spacing: -0.04em; }
.pt-api-copy p { color: #cbd5e1; line-height: 1.65; margin: 0.75rem 0 0; }
.pt-btn-light { background: rgba(255,255,255,0.1) !important; border-color: rgba(255,255,255,0.2) !important; color: #fff !important; }
.pt-btn-light:hover { background: rgba(255,255,255,0.18) !important; }

/* ── Terminal ──────────────────────────────────────────── */
.pt-terminal {
  background: #020617; color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px; padding: 1.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84rem; line-height: 1.6; overflow: auto;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.pt-terminal .muted { color: #64748b; }

/* ── Pricing ───────────────────────────────────────────── */
.pt-pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem;
}
.pt-pricing-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 24px;
  padding: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.pt-pricing-featured {
  border-color: #2563eb; border-width: 2px;
  box-shadow: 0 16px 48px rgba(37,99,235,0.16);
  position: relative;
}
.pt-pricing-badge {
  font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
  color: #64748b;
}
.pt-pricing-badge-featured { color: #2563eb; }
.pt-pricing-name { font-size: 1.2rem; font-weight: 900; color: #0f172a; margin-top: 0.25rem; }
.pt-pricing-price { font-size: 2.4rem; font-weight: 950; color: #0f172a; letter-spacing: -0.04em; line-height: 1; margin: 0.5rem 0; }
.pt-pricing-price span { font-size: 1rem; font-weight: 500; color: #64748b; }
.pt-pricing-desc { font-size: 0.88rem; color: #64748b; line-height: 1.5; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; margin-bottom: 0.25rem; }
.pt-pricing-features { list-style: none; padding: 0; margin: 0.5rem 0 1rem; }
.pt-pricing-features li { padding: 0.3rem 0; font-size: 0.86rem; color: #334155; }
.pt-pricing-features li:first-child { font-weight: 700; }
.pt-pricing-features li[style*="opacity"] { color: #94a3b8; }

/* ── Tool cards ────────────────────────────────────────── */
.pt-tool-card {
  display: flex; flex-direction: column; min-height: 200px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.pt-tool-card:hover {
  transform: translateY(-3px); border-color: #60a5fa;
  box-shadow: 0 20px 60px rgba(37,99,235,0.15);
}
.pt-tool-card .pt-link { margin-top: auto; color: #2563eb; font-weight: 800; font-size: 0.88rem; }

/* ── Demo section ──────────────────────────────────────── */
.pt-demo-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.5rem; align-items: start; }
.pt-demo-copy { display: flex; flex-direction: column; }
.pt-demo-points { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pt-demo-point { color: #a5f3fc; font-size: 0.9rem; font-weight: 600; }

/* ── Form ──────────────────────────────────────────────── */
.pt-form-card input, .pt-form-card select, .pt-form-card textarea {
  width: 100%; border: 1px solid #dbe3ef; border-radius: 12px;
  padding: 0.75rem 0.9rem; background: #fff; color: #0f172a; font-size: 0.9rem;
  transition: border-color 0.15s;
}
.pt-form-card input:focus, .pt-form-card select:focus, .pt-form-card textarea:focus {
  outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.pt-form-card label { display: grid; gap: 0.3rem; color: #334155; font-weight: 700; font-size: 0.84rem; }
.pt-form-card { display: grid; gap: 0.85rem; }

/* ── Buttons ───────────────────────────────────────────── */
.pt-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.pt-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0.78rem 1.35rem;
  border-radius: 999px; font-weight: 800; text-decoration: none;
  border: 1.5px solid transparent; font-size: 0.92rem;
  transition: transform 0.14s, box-shadow 0.14s, background 0.14s;
  cursor: pointer;
}
.pt-btn:hover { transform: translateY(-1px); }
.pt-btn.primary {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff; box-shadow: 0 8px 28px rgba(37,99,235,0.3);
}
.pt-btn.primary:hover { box-shadow: 0 14px 40px rgba(37,99,235,0.4); }
.pt-btn.secondary { background: #fff; color: #1e293b; border-color: #e2e8f0; }
.pt-btn.secondary:hover { border-color: #93c5fd; background: #f8fafc; }
.pt-btn-lg { min-height: 52px; padding: 0.95rem 1.75rem; font-size: 1rem; }

/* ── Note ──────────────────────────────────────────────── */
.pt-note {
  border: 1px solid rgba(245,158,11,0.25); background: rgba(245,158,11,0.08);
  color: #92400e; border-radius: 14px; padding: 0.75rem 1rem;
  font-size: 0.85rem; line-height: 1.5;
}

/* ── Table ─────────────────────────────────────────────── */
.pt-table-card { overflow: hidden; padding: 0; }
.pt-table { width: 100%; border-collapse: collapse; background: #fff; }
.pt-table th, .pt-table td { padding: 0.9rem 1rem; border-bottom: 1px solid #e2e8f0; text-align: left; vertical-align: middle; }
.pt-table th { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: #64748b; background: #f8fafc; font-weight: 700; }
.pt-table td { color: #0f172a; font-size: 0.9rem; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1060px) {
  .pt-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pt-api-grid { grid-template-columns: 1fr; }
  .pt-workflow { flex-direction: column; }
  .pt-workflow-arrow { transform: rotate(90deg); padding: 0; align-self: flex-start; margin-left: 1.1rem; }
}
@media (max-width: 840px) {
  .pt-grid, .pt-pricing-grid { grid-template-columns: 1fr; }
  .pt-demo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pt-shell { padding: 1rem 0.9rem 3.5rem; }
  .pt-hero { border-radius: 22px; }
  .pt-features-grid { grid-template-columns: 1fr; }
  .pt-actions .pt-btn { width: 100%; }
  .pt-grid-2 { grid-template-columns: 1fr; }
  .pt-hero-metrics { flex-direction: column; gap: 1rem; }
}
