/*
Theme Name: Propa
Theme URI: https://propahomes.com.au
Author: Propa
Author URI: https://propahomes.com.au
Description: Propa child theme on Divi. Carries the Propa design system, voice, and legal footer. Pairs with the Propa Marketing plugin. Do not edit inside WP admin; edit in the repo and redeploy.
Template: Divi
Version: 1.1.1
Text Domain: propa
*/

/* ─────────────────────────────────────────────────────────────────────────
 * 1. Design tokens (mirrors web/styleguide/PROPA-WEB-STYLEGUIDE.md §1.1
 *    and web/mockups/shared.css)
 * ───────────────────────────────────────────────────────────────────── */
:root {
  --propa-blue: #2563FF;
  --propa-blue-deep: #1B4DDB;
  --propa-blue-tint: #EAF1FF;
  --propa-blue-soft: #F4F7FF;
  --sky-1: #D8E6FF;
  --sky-2: #ECF2FF;
  --sky-3: #F7FAFF;
  --bg-sky: linear-gradient(180deg, #D8E6FF 0%, #EBF2FF 45%, #FFFFFF 100%);
  --ink: #0A0A0A;
  --ink-80: #1A1A1F;
  --ink-60: #3D414B;
  --ink-50: #5C616E;
  --ink-40: #8B8F9B;
  --ink-30: #B7BAC2;
  --line: #E7E9EE;
  --line-soft: #F0F2F6;
  --paper: #FFFFFF;
  --surface: #F5F6F8;
  --hot: #FF4D3D;
  --warm: #FFA51A;
  --cool: #38B6FF;
  --good: #1F9D55;
  --soft-shadow: 0 12px 32px rgba(20,45,110,0.07), 0 2px 6px rgba(20,45,110,0.04);
  --soft-shadow-lg: 0 24px 48px rgba(20,45,110,0.10), 0 4px 12px rgba(20,45,110,0.05);
}

/* ─────────────────────────────────────────────────────────────────────────
 * 2. Base reset on top of Divi (don't break Divi, just nudge it Propa-ward)
 * ───────────────────────────────────────────────────────────────────── */
body, .et_pb_section, .et_pb_row, .et_pb_column {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body { background: #fff; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter', system-ui, sans-serif !important; }

/* Override Divi's default text rendering to match the Propa scale */
@media (min-width: 768px) {
  body { font-size: 17px; }
}

/* Links: always Propa-blue, no underline by default */
a { color: var(--propa-blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--propa-blue-deep); }

/* ─────────────────────────────────────────────────────────────────────────
 * 3. Container + section utilities
 * ───────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }
.section { padding: 56px 0; }
@media (min-width: 1024px) { .section { padding: 80px 0; } }

/* ─────────────────────────────────────────────────────────────────────────
 * 4. Typography utilities (these are .eyebrow, .display-l etc. as locked
 *    in the styleguide; mirrors web/mockups/shared.css)
 * ───────────────────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--propa-blue);
  margin-bottom: 24px;
}
.display-xl { font-size: 56px; font-weight: 800; letter-spacing: -0.045em; line-height: 0.92; }
.display-l  { font-size: 44px; font-weight: 800; letter-spacing: -0.04em;  line-height: 0.95; }
.display-m  { font-size: 36px; font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.03em;  line-height: 1.04; }
.h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em;  line-height: 1.18; }
.lead { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.45; color: var(--ink-60); }
.body { font-size: 16px; line-height: 1.55; color: var(--ink-60); }
.caption { font-size: 13px; color: var(--ink-50); }
@media (min-width: 768px) {
  .display-xl { font-size: 88px; }
  .display-l  { font-size: 64px; }
  .display-m  { font-size: 48px; }
  .h1 { font-size: 40px; }
  .h2 { font-size: 32px; }
  .h3 { font-size: 24px; }
  .lead { font-size: 22px; }
  .body { font-size: 17px; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * 5. Buttons (Propa pill system, overrides Divi's default button style
 *    only where .btn is applied; doesn't fight Divi Builder buttons)
 * ───────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.005em;
  transition: transform .15s, box-shadow .15s, background .15s;
  min-height: 48px; cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--propa-blue); color: #fff !important; border: 1px solid var(--propa-blue); }
.btn-primary:hover { background: var(--propa-blue-deep); transform: translateY(-2px); box-shadow: var(--soft-shadow-lg); color: #fff !important; }
.btn-dark { background: var(--ink); color: #fff !important; border: 1px solid var(--ink); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow-lg); color: #fff !important; }
.btn-ghost { background: transparent; color: var(--ink) !important; border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--surface); color: var(--ink) !important; }
.btn-ghost-blue { background: transparent; color: var(--propa-blue) !important; border: 1px solid var(--propa-blue); }
.btn-ghost-blue:hover { background: var(--propa-blue-tint); color: var(--propa-blue) !important; }
.btn-light { background: var(--propa-blue-tint); color: var(--propa-blue) !important; border: 1px solid transparent; }
.btn-light:hover { background: var(--propa-blue-soft); color: var(--propa-blue) !important; }
.btn-lg { padding: 16px 28px; font-size: 16px; min-height: 54px; }
.btn-sm { padding: 10px 16px; font-size: 13px; min-height: 38px; }
.btn-chev::after { content: '→'; margin-left: 4px; transition: transform .15s; }
.btn-chev:hover::after { transform: translateX(3px); }

/* ─────────────────────────────────────────────────────────────────────────
 * 6. Soft card, trust strip, FAQ accordion, sticky bar, modal - the
 *    components every Propa page needs, even when Divi Builder paints
 *    around them.
 * ───────────────────────────────────────────────────────────────────── */
.soft-card { background: #fff; border-radius: 28px; padding: 24px; box-shadow: var(--soft-shadow); }
@media (min-width: 768px) { .soft-card { padding: 32px; } }

.trust-strip { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 13px; color: var(--ink-50); font-weight: 500; }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .dot { width: 6px; height: 6px; background: var(--good); border-radius: 50%; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { color: var(--ink-50); }

.faq-section { background: var(--surface); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--soft-shadow); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); background: none; border: none; cursor: pointer;
  font-family: inherit;
}
.faq-q .icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--propa-blue-tint); color: var(--propa-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; transition: transform .2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 24px; }
.faq-a p { font-size: 15px; color: var(--ink-60); line-height: 1.6; }

.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex; gap: 12px;
  transform: translateY(100%); transition: transform .3s;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1; }
@media (min-width: 768px) { .sticky-bar { display: none; } }

.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,15,0.55); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff; border-radius: 32px; max-width: 480px; width: 100%;
  padding: 40px 32px; box-shadow: var(--soft-shadow-lg); position: relative; text-align: center;
}
.modal .close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); color: var(--ink-60);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: none; cursor: pointer;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 7. Header + footer (rendered by header.php / footer.php)
 * ───────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.logo {
  font-size: 34px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--propa-blue); text-decoration: none; line-height: 1;
}
@media (min-width: 768px) { .logo { font-size: 40px; } }
.logo sup { font-size: 12px; vertical-align: super; font-weight: 600; }
.nav { display: none; gap: 28px; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { color: var(--ink-80); font-weight: 500; font-size: 15px; padding: 6px 0; }
.nav a:hover { color: var(--propa-blue); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-login { display: none; color: var(--ink-60); font-weight: 600; font-size: 14px; }
@media (min-width: 768px) { .nav-login { display: inline; } }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: 28px; height: 24px; justify-content: center;
  background: none; border: none; cursor: pointer;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 0 32px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.5; max-width: 320px; }
.footer-col h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 700;
}
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center; font-size: 12px;
}
.footer-bottom .legal { max-width: 800px; line-height: 1.5; color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────────────────────────────────────
 * 8. Consent banner (rendered by the marketing plugin's consent helper)
 * ───────────────────────────────────────────────────────────────────── */
.propa-consent {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 9999;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 20px;
  box-shadow: var(--soft-shadow-lg);
  padding: 16px 20px;
  display: none; gap: 16px; align-items: center; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto;
}
.propa-consent.visible { display: flex; }
.propa-consent p { margin: 0; font-size: 14px; color: var(--ink-60); line-height: 1.5; flex: 1; min-width: 240px; }
.propa-consent .actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Accessibility */
:focus-visible { outline: 2px solid var(--propa-blue); outline-offset: 2px; }

/* ============================================================
   Full Propa design system - synced from web/mockups/shared.css
   ============================================================ */
:root {
  --propa-blue: #2563FF;
  --propa-blue-deep: #1B4DDB;
  --propa-blue-tint: #EAF1FF;
  --propa-blue-soft: #F4F7FF;
  --sky-1: #D8E6FF;
  --sky-2: #ECF2FF;
  --sky-3: #F7FAFF;
  --bg-sky: linear-gradient(180deg, #D8E6FF 0%, #EBF2FF 45%, #FFFFFF 100%);
  --ink: #0A0A0A;
  --ink-80: #1A1A1F;
  --ink-60: #3D414B;
  --ink-50: #5C616E;
  --ink-40: #8B8F9B;
  --ink-30: #B7BAC2;
  --line: #E7E9EE;
  --line-soft: #F0F2F6;
  --paper: #FFFFFF;
  --surface: #F5F6F8;
  --hot: #FF4D3D;
  --warm: #FFA51A;
  --cool: #38B6FF;
  --good: #1F9D55;
  --soft-shadow: 0 12px 32px rgba(20,45,110,0.07), 0 2px 6px rgba(20,45,110,0.04);
  --soft-shadow-lg: 0 24px 48px rgba(20,45,110,0.10), 0 4px 12px rgba(20,45,110,0.05);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
.mono { font-family: 'JetBrains Mono', monospace; }
img { max-width: 100%; display: block; }
a { color: var(--propa-blue); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ── Layout ───────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container-wide { padding: 0 48px; } }
.section { padding: 56px 0; }
@media (min-width: 1024px) { .section { padding: 80px 0; } }

/* ── Typography ───────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--propa-blue);
  margin-bottom: 24px;
}
.display-xl { font-size: 56px; font-weight: 800; letter-spacing: -0.045em; line-height: 0.92; }
.display-l  { font-size: 44px; font-weight: 800; letter-spacing: -0.04em;  line-height: 0.95; }
.display-m  { font-size: 36px; font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.h1   { font-size: 32px; font-weight: 800; letter-spacing: -0.03em;  line-height: 1.04; }
.h2   { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.h3   { font-size: 22px; font-weight: 700; letter-spacing: -0.02em;  line-height: 1.18; }
.h4   { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; }
.lead { font-size: 20px; font-weight: 500; letter-spacing: -0.01em;  line-height: 1.45; color: var(--ink-60); }
.body { font-size: 16px; line-height: 1.55; color: var(--ink-60); }
.body-large { font-size: 18px; line-height: 1.55; color: var(--ink-60); }
.caption { font-size: 13px; color: var(--ink-50); }
.micro { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

@media (min-width: 768px) {
  .display-xl { font-size: 88px; }
  .display-l  { font-size: 64px; }
  .display-m  { font-size: 48px; }
  .h1 { font-size: 40px; }
  .h2 { font-size: 32px; }
  .h3 { font-size: 24px; }
  .h4 { font-size: 20px; }
  .lead { font-size: 22px; }
  .body { font-size: 17px; }
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.005em;
  transition: transform .15s, box-shadow .15s, background .15s;
  min-height: 48px;
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, #3D78FF 0%, var(--propa-blue) 55%, var(--propa-blue-deep) 100%); color: #fff; border: 1px solid var(--propa-blue); box-shadow: 0 6px 18px rgba(37,99,255,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,99,255,0.38); }
.btn-dark { background: var(--ink); color: #fff; border: 1px solid var(--ink); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-ghost-blue { background: transparent; color: var(--propa-blue); border: 1px solid var(--propa-blue); }
.btn-ghost-blue:hover { background: var(--propa-blue-tint); }
.btn-light { background: var(--propa-blue-tint); color: var(--propa-blue); border: 1px solid transparent; }
.btn-light:hover { background: var(--propa-blue-soft); }
.btn-lg { padding: 16px 28px; font-size: 16px; min-height: 54px; }
.btn-sm { padding: 10px 16px; font-size: 13px; min-height: 38px; }
.btn-chev::after { content: '→'; margin-left: 4px; transition: transform .15s; }
.btn-chev:hover::after { transform: translateX(3px); }

/* ── Cards ────────────────────────────────────────────────────────────── */
.soft-card {
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}
@media (min-width: 768px) { .soft-card { padding: 32px; } }

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.logo {
  font-size: 34px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--propa-blue); line-height: 1;
}
@media (min-width: 768px) { .logo { font-size: 40px; } }
.logo sup { font-size: 12px; vertical-align: super; font-weight: 600; }
.nav { display: none; gap: 28px; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav > a, .nav > .nav-item > .nav-trigger {
  color: var(--ink-80); font-weight: 500; font-size: 15px;
  padding: 6px 0;
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav > a:hover, .nav > .nav-item > .nav-trigger:hover { color: var(--propa-blue); }

/* ── Nav dropdowns ────────────────────────────────────────────────────── */
.nav-item { position: relative; }
.nav-trigger .caret {
  font-size: 10px; line-height: 1; transition: transform .2s; color: var(--ink-50);
}
.nav-item:hover .nav-trigger .caret,
.nav-item:focus-within .nav-trigger .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: 100%; left: -16px;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--soft-shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 110;
}
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--ink-80);
  font-size: 14px; font-weight: 600;
  transition: background .15s, transform .15s;
}
.nav-dropdown a:hover { background: var(--propa-blue-soft); color: var(--propa-blue); transform: translateX(2px); }

/* App-style line-icon chips used in nav dropdowns + login menu */
.ic {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 10px;
  background: var(--propa-blue-tint); color: var(--propa-blue);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.ic svg { width: 18px; height: 18px; display: block; }
.nav-dropdown a:hover .ic { background: var(--propa-blue); color: #fff; }

.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Two-line login affordance (buyer + seller) */
.nav-login {
  display: none; position: relative;
}
@media (min-width: 768px) { .nav-login { display: inline-flex; align-items: center; } }
.nav-login .nav-login-trigger {
  color: var(--ink-60); font-weight: 600; font-size: 14px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 4px;
}
.nav-login .nav-login-trigger:hover { color: var(--propa-blue); }
.nav-login .caret { font-size: 10px; transition: transform .2s; color: var(--ink-40); }
.nav-login:hover .caret,
.nav-login:focus-within .caret { transform: rotate(180deg); }
.nav-login .login-menu {
  position: absolute; top: 100%; right: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--soft-shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 110;
}
.nav-login:hover .login-menu,
.nav-login:focus-within .login-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-login .login-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink-80);
  font-size: 14px; font-weight: 600;
  transition: background .15s;
}
.nav-login .login-menu a:hover { background: var(--propa-blue-soft); color: var(--propa-blue); }
.nav-login .login-menu .ic {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--propa-blue-tint); color: var(--propa-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-login .login-menu .lbl {
  display: flex; flex-direction: column; gap: 1px; line-height: 1.2;
}
.nav-login .login-menu .lbl .sub {
  font-size: 11px; font-weight: 500; color: var(--ink-50); text-transform: uppercase; letter-spacing: 0.06em;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: 28px; height: 24px; justify-content: center;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── Trust strip + dot ────────────────────────────────────────────────── */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 13px; color: var(--ink-50); font-weight: 500;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .dot {
  width: 6px; height: 6px; background: var(--good); border-radius: 50%;
}

/* ── Section header ───────────────────────────────────────────────────── */
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { color: var(--ink-50); }

/* ── FAQ accordion ────────────────────────────────────────────────────── */
.faq-section { background: var(--surface); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--soft-shadow); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q .icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--propa-blue-tint); color: var(--propa-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  transition: transform .2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 600px; padding: 0 24px 24px;
}
.faq-a p { font-size: 15px; color: var(--ink-60); line-height: 1.6; }

/* ── Final CTA band ───────────────────────────────────────────────────── */
.final-cta {
  background: var(--bg-sky);
}
.final-cta-inner {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
@media (min-width: 900px) {
  .final-cta-inner {
    grid-template-columns: 1.1fr 1fr;
    text-align: left;
    gap: 56px;
  }
}
.final-cta .eyebrow { margin-bottom: 14px; }
.final-cta h1, .final-cta h2 { margin-bottom: 16px; letter-spacing: -0.035em; line-height: 1.02; }
.final-cta .lead { margin-bottom: 28px; line-height: 1.5; }
.final-cta .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; justify-content: center; }
.final-cta .trust-strip { justify-content: center; gap: 14px 24px; }
@media (min-width: 900px) {
  .final-cta .hero-ctas { justify-content: flex-start; }
  .final-cta .trust-strip { justify-content: flex-start; }
}
.final-cta-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 320px;
}
.final-cta-visual .mini-phone {
  width: 220px; aspect-ratio: 9 / 19;
  background: #0A0A0A; border-radius: 36px;
  padding: 8px;
  box-shadow: 0 32px 64px rgba(20,45,110,0.18), 0 12px 24px rgba(20,45,110,0.10);
  transform: rotate(-4deg);
  transition: transform .3s ease;
}
.final-cta-visual .mini-phone:hover { transform: rotate(-2deg) translateY(-4px); }
.final-cta-visual .mini-phone .screen {
  width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  background: #fff;
}
.final-cta-visual .mini-phone .screen img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-visual .badge {
  position: absolute; right: 6%; top: 12%;
  background: #fff; border-radius: 16px;
  padding: 10px 14px; box-shadow: var(--soft-shadow);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  transform: rotate(3deg);
}
.final-cta-visual .badge .ic {
  width: 28px; height: 28px; border-radius: 9px;
  background: rgba(31,157,85,0.14); color: var(--good);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.final-cta-visual .badge .meta {
  font-size: 11px; color: var(--ink-50); font-weight: 500;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7); padding: 56px 0 32px;
}
.footer-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.5; max-width: 320px; }
.footer-col h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 700;
}
.footer-col a {
  display: block; padding: 6px 0; color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: 12px;
}
.footer-bottom .legal {
  max-width: 800px; line-height: 1.5; color: rgba(255,255,255,0.5);
}

/* ── Sticky mobile CTA bar ────────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex; gap: 12px;
  transform: translateY(100%); transition: transform .3s;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1; }
@media (min-width: 768px) { .sticky-bar { display: none; } }

/* ── Exit-intent modal ────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,15,0.55);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff; border-radius: 32px;
  max-width: 480px; width: 100%;
  padding: 40px 32px;
  box-shadow: var(--soft-shadow-lg);
  position: relative;
  text-align: center;
}
.modal .close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); color: var(--ink-60);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.modal h3 { margin-bottom: 12px; }
.modal p { color: var(--ink-60); margin-bottom: 24px; }
.modal .modal-cta { display: flex; flex-direction: column; gap: 8px; }
.modal .number-preview {
  background: var(--propa-blue-soft);
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid rgba(37,99,255,0.10);
}
.modal .number-preview .num {
  font-size: 36px; font-weight: 800; color: var(--propa-blue);
  letter-spacing: -0.025em; line-height: 1;
}
.modal .number-preview .lbl {
  font-size: 12px; color: var(--ink-50); text-transform: uppercase;
  letter-spacing: 0.05em; margin-top: 6px;
}

/* ── Dark section safety ──────────────────────────────────────────────────
   Any dark strip must render white headings. On the live site Divi colours
   headings via an ID selector (#et-boc h2 {...}) which out-specifies a plain
   .on-dark h2 rule - so these MUST be !important to win. We also catch the
   common dark wrappers by class AND inline `background: var(--ink)/#0A0A0A`
   so a section can never go black-on-black again, tagged or not. ────────── */
.on-dark,
.site-footer,
.gate-card,
.smm-band, .smm-card,
.download-section,
[style*="background: var(--ink)"], [style*="background:var(--ink)"],
[style*="background: #0A0A0A"],   [style*="background:#0A0A0A"],
[style*="background: #0a0a0a"],   [style*="background:#0a0a0a"] { color: #fff; }

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5,
.gate-card h1, .gate-card h2, .gate-card h3, .gate-card h4,
.smm-band h1, .smm-band h2, .smm-band h3, .smm-band h4,
.smm-card h1, .smm-card h2, .smm-card h3, .smm-card h4,
.download-section h1, .download-section h2, .download-section h3, .download-section h4,
[style*="background: var(--ink)"] h1, [style*="background: var(--ink)"] h2, [style*="background: var(--ink)"] h3, [style*="background: var(--ink)"] h4,
[style*="background:var(--ink)"] h1,  [style*="background:var(--ink)"] h2,  [style*="background:var(--ink)"] h3,  [style*="background:var(--ink)"] h4,
[style*="background: #0A0A0A"] h1, [style*="background: #0A0A0A"] h2, [style*="background: #0A0A0A"] h3,
[style*="background:#0A0A0A"] h1,  [style*="background:#0A0A0A"] h2,  [style*="background:#0A0A0A"] h3 { color: #fff !important; }

.on-dark p, .on-dark .lead, .on-dark .body,
.gate-card p, .smm-band p, .download-section p { color: rgba(255,255,255,0.80) !important; }
.on-dark .eyebrow, .gate-card .eyebrow, .download-section .eyebrow { color: var(--cool) !important; }
.on-dark .caption, .on-dark .micro { color: rgba(255,255,255,0.6) !important; }
.on-dark a:not(.btn), .download-section a:not(.btn), .gate-card a:not(.btn) { color: #fff; text-decoration: underline; }

/* ── Dual-CTA Login row (buyers + sellers from one prompt) ────────────── */
.login-split {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 460px;
}
@media (min-width: 640px) { .login-split { grid-template-columns: 1fr 1fr; } }
.login-tile {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.login-tile:hover {
  border-color: var(--propa-blue);
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}
.login-tile .login-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--propa-blue-tint); color: var(--propa-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.login-tile .login-text { display: flex; flex-direction: column; line-height: 1.2; }
.login-tile .login-text .role { font-size: 11px; font-weight: 700; color: var(--ink-50); text-transform: uppercase; letter-spacing: 0.08em; }
.login-tile .login-text .action { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.on-dark .login-tile { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); color: #fff; }
.on-dark .login-tile:hover { background: rgba(255,255,255,0.08); border-color: var(--propa-blue); }
.on-dark .login-tile .login-ic { background: rgba(37,99,255,0.20); color: #fff; }
.on-dark .login-tile .login-text .role { color: rgba(255,255,255,0.55); }

/* ── Mockup annotations (only visible in the prototype) ───────────────── */
.annotation {
  background: #FFF7E0; border-left: 4px solid var(--warm);
  padding: 8px 14px; font-size: 12px; color: #6B5400;
  border-radius: 4px;
  margin: 8px auto; max-width: 1200px;
  font-family: 'JetBrains Mono', monospace;
}
.annotation::before {
  content: 'MOCKUP NOTE'; font-weight: 700; margin-right: 8px;
  color: var(--warm);
}
body.no-annotations .annotation { display: none; }

/* ── Common patterns reused across mockups ────────────────────────────── */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

/* ── Mobile menu (hamburger-triggered; hidden on desktop) ─────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 95;
  background: #fff; padding: 88px 0 40px; overflow-y: auto;
}
body.nav-open { overflow: hidden; }
body.nav-open .mobile-menu { display: block; }
.mobile-menu .mm-group { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .mm-group h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-40); margin: 0 0 6px;
}
.mobile-menu .mm-group a {
  display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 17px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
}
.mobile-menu .mm-group a .ic { width: 34px; height: 34px; }
.mobile-menu .mm-cta { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; }
.mobile-menu .mm-cta .btn { width: 100%; }
.hamburger span { transition: transform .2s, opacity .2s; }
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .mobile-menu, .hamburger { display: none !important; } }
