/* ==========================================================================
   BuyRealEstateData Theme — main.css
   ========================================================================== */

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

/* ---------- Design Tokens ---------- */
:root {
    --b: #1E88E5;
    --bd: #1565C0;
    --bl: #E3F2FD;
    --bt: #F5FAFF;
    --dk: #1A1A1A;
    --body: #222831;
    --mt: #393E46;
    --gy: #64748b;
    --br: #e2e8f0;
    --bg: #f8fafc;
    --wh: #fff;
    --r: 14px;
    --fh: 'Archivo', sans-serif;
    --fb: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fb);
    color: var(--body);
    line-height: 1.6;
    background: var(--wh);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

/* ---------- Layout ---------- */
.c {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: box-shadow .3s;
    overflow: visible;
}

.hdr.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06)
}

.hdr-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    overflow: visible
}

.logo {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 800;
    color: var(--dk);
    letter-spacing: -.5px;
    flex-shrink: 0
}

.logo span {
    color: var(--b)
}

/* Nav links container */
.nl {
    display: flex;
    align-items: center;
    gap: 28px
}

.nl-links {
    display: flex;
  
    gap: 28px
}

.nl-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--mt);
    transition: color .2s
}

.nl-links a:hover,
.nl-links a.active {
    color: var(--b)
}

/* Auth buttons inside nav — hidden on desktop (shown via .na instead) */
.nl-actions {
    display: none
}

/* Desktop auth buttons */
.na {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    overflow: visible;
    position: relative
}

/* Ensure profile dropdown renders above everything */
.na .pdm-profile-wrapper {
    position: relative;
    z-index: 10001
}

.na .pdm-profile-dropdown {
    z-index: 10002
}

/* Buttons */
.bo {
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 600;
    color: var(--mt);
    padding: 8px 18px;
    border-radius: 9px;
    border: 1px solid var(--br);
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    display: inline-block;
    white-space: nowrap;
}

.bo:hover {
    border-color: var(--b);
    color: var(--b)
}

.bs {
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 600;
    color: var(--wh);
    padding: 8px 20px;
    border-radius: 9px;
    border: none;
    background: var(--b);
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.bs:hover {
    background: var(--bd);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(30, 136, 229, .3)
}

.bs svg {
    width: 14px;
    height: 14px
}

/* ---------- Animated Hamburger ---------- */
.mt {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 22px;
    height: 16px;
    position: relative;
    z-index: 1001;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 14px;
}

.mt-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dk);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.35s cubic-bezier(0.77, 0.2, 0.05, 1),
        opacity 0.25s ease,
        top 0.35s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mt-bar:nth-child(1) {
    top: 0;
}

.mt-bar:nth-child(2) {
    top: 7px;
}

.mt-bar:nth-child(3) {
    top: 14px;
}

/* Open state — morphs to X */
.mt.is-open .mt-bar:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.mt.is-open .mt-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.mt.is-open .mt-bar:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    padding: 160px 0 110px;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.55) 100%),
        linear-gradient(135deg, #1a365d 0%, #1e3a5f 40%, #0f172a 100%);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hc {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 760px;
    margin: 0 auto
}

.hero h1 {
    font-family: var(--fh);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--wh);
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.hs {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 44px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.ht {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap
}

.ht-i {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85)
}

.ht-i svg {
    width: 16px;
    height: 16px;
    color: var(--b)
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.sb {
    background: var(--dk);
    padding: 44px 0
}

.sg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.sn {
    font-family: var(--fh);
    font-size: 40px;
    font-weight: 800;
    color: var(--b);
    line-height: 1;
    margin-bottom: 6px
}

.sl {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .55)
}

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.sec {
    padding: 90px 0
}

.sec-g {
    background: var(--bg)
}

.sh {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px
}

.bdg {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--b);
    background: var(--bl);
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 20px
}

.st {
    font-family: var(--fh);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dk);
    margin-bottom: 16px
}

.sd {
    font-size: 16px;
    line-height: 1.7;
    color: var(--mt)
}

/* ---------- Benefit Cards (Who It's For) ---------- */
.bg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.bc {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 36px 30px;
    text-align: center;
    transition: all .3s;
    position: relative
}

.bc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--b);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity .3s
}

.bc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .06)
}

.bc:hover::after {
    opacity: 1
}

.bn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bl);
    color: var(--b);
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px
}

.bt {
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 8px
}

.bd2 {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mt)
}

/* ---------- Properties Section ---------- */
.sc {
    background: var(--bg);
    padding: 80px 0 90px
}

.sc-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px
}

.sc-h h2 {
    font-family: var(--fh);
    font-size: 30px;
    font-weight: 700;
    color: var(--dk)
}

.sc-l {
    font-size: 14px;
    font-weight: 600;
    color: var(--b);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s
}

.sc-l:hover {
    gap: 10px
}

.sc-l svg {
    width: 16px;
    height: 16px
}

/* ---------- About Data ---------- */
.wg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.wt {
    font-family: var(--fh);
    font-size: 32px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 18px;
    line-height: 1.25
}

.wp {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mt);
    margin-bottom: 14px
}

.wv {
    background: var(--bl);
    border-radius: 16px;
    padding: 36px 28px
}

/* Data Preview Table */
.dp {
    background: var(--wh);
    border-radius: 12px;
    border: 1px solid var(--br);
    overflow: hidden
}

.dph {
    background: var(--b);
    padding: 10px 20px;
    display: flex;
    gap: 6px
}

.dph span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block
}

.dr {
    background: #ef4444
}

.dy {
    background: #f59e0b
}

.dg2 {
    background: #22c55e
}

.dpr {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 10px 20px;
    font-size: 12px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--body)
}

.dpr.dprh {
    background: #f8fafc;
    font-weight: 700;
    color: var(--dk);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.dpr:last-child {
    border-bottom: none
}

/* ---------- How It Works ---------- */
.stg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.stc {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 30px 22px;
    text-align: center;
    transition: all .3s
}

.stc:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05)
}

.sti {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background: var(--bl);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.sti svg {
    width: 18px;
    height: 18px;
    color: var(--b)
}

.stt {
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 6px
}

.std {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gy)
}

/* ---------- Data Fields Grid ---------- */
.dpg {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.dpi {
    text-align: center;
    padding: 22px 10px;
    background: var(--wh);
    border-radius: 12px;
    border: 1px solid var(--br);
    transition: all .25s
}

.dpi:hover {
    border-color: var(--b);
    box-shadow: 0 4px 14px rgba(30, 136, 229, .08)
}

.dic {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    background: var(--bl);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center
}

.dic svg {
    width: 20px;
    height: 20px;
    color: var(--b)
}

.dlb {
    font-size: 12px;
    font-weight: 600;
    color: var(--body)
}

/* ---------- Split CTA ---------- */
.spc {
    background: linear-gradient(135deg, #1A1A1A 0%, #222831 50%, #1A1A1A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.spc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.spg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    align-items: center
}

.spi {
    text-align: center
}

.spt {
    font-family: var(--fh);
    font-size: 28px;
    font-weight: 700;
    color: var(--wh);
    margin-bottom: 14px
}

.spd {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 28px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto
}

.spb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wh);
    color: var(--dk);
    font-family: var(--fb);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all .25s
}

.spb:hover {
    background: var(--bl);
    transform: translateY(-2px)
}

.spb svg {
    width: 16px;
    height: 16px
}

.spv {
    position: absolute;
    left: 50%;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(255, 255, 255, .08);
    z-index: 1
}

/* ---------- Use Cases / Outreach Cards ---------- */
.cg2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.uc {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 30px 26px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.uc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--b), var(--bd));
    opacity: 0;
    transition: opacity .3s
}

.uc:hover {
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(30, 136, 229, .1), 0 2px 8px rgba(0, 0, 0, .04);
    transform: translateY(-4px)
}

.uc:hover::before {
    opacity: 1
}

.uci {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all .3s
}

.uc:hover .uci {
    background: var(--b)
}

.uci svg {
    width: 22px;
    height: 22px;
    color: var(--b);
    transition: color .3s
}

.uc:hover .uci svg {
    color: var(--wh)
}

.uct {
    font-family: var(--fh);
    font-size: 17px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 8px
}

.ucd {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mt)
}

/* ---------- Testimonial ---------- */
.tc {
    max-width: 720px;
    margin: 0 auto;
    text-align: center
}

.tq {
    font-family: var(--fh);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--dk);
    margin-bottom: 28px;
    font-style: italic;
    position: relative
}

.tq::before {
    content: '\201C';
    font-size: 72px;
    color: var(--bl);
    font-family: Georgia, serif;
    position: absolute;
    top: -24px;
    left: -8px;
    line-height: 1
}

.ta {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bl);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-weight: 800;
    color: var(--b);
    font-size: 18px
}

.tn {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    color: var(--dk)
}

.tr {
    font-size: 13px;
    color: var(--gy);
    margin-top: 2px
}

/* ---------- Why Us ---------- */
.wyg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.wyc {
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 30px 26px;
    transition: all .3s;
    position: relative;
    background: var(--wh)
}

.wyc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--b);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity .3s
}

.wyc:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transform: translateY(-3px)
}

.wyc:hover::after {
    opacity: 1
}

.wyt {
    font-family: var(--fh);
    font-size: 17px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 8px
}

.wyd {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--mt)
}

/* ---------- CTA Bar ---------- */
.cb {
    background: linear-gradient(135deg, #1A1A1A 0%, #222831 50%, #1A1A1A 100%);
    padding: 52px 0
}

.ci {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ctx {
    font-family: var(--fh);
    font-size: 26px;
    font-weight: 700;
    color: var(--wh)
}

.cbt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wh);
    color: var(--dk);
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap
}

.cbt:hover {
    background: var(--bl);
    transform: translateY(-2px)
}

.cbt svg {
    width: 15px;
    height: 15px
}

/* ---------- FAQ ---------- */
.fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--br);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s
}

.fi.active {
    border-color: var(--b)
}

.fq {
    padding: 16px 20px;
    font-family: var(--fb);
    font-size: 14px;
    font-weight: 600;
    color: var(--dk);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color .2s
}

.fq:hover {
    color: var(--b)
}

.fc {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .3s;
    color: var(--gy)
}

.fi.active .fc {
    transform: rotate(180deg);
    color: var(--b)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
    padding: 0 20px
}

.fi.active .fa {
    max-height: 300px;
    padding: 0 20px 16px
}

.fa p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--mt)
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ftr {
    background: #111318;
    padding: 60px 0 0;
    color: rgba(255, 255, 255, .65)
}

.ftg {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ftb {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 800;
    color: var(--wh);
    margin-bottom: 12px
}

.ftb span {
    color: var(--b)
}

.ftt {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .45);
    max-width: 270px;
    margin-bottom: 18px
}

.fts {
    display: flex;
    gap: 10px
}

.fts a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.fts a:hover {
    background: var(--b)
}

.fts a svg {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, .5)
}

.fts a:hover svg {
    color: var(--wh)
}

.ftct {
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 700;
    color: var(--wh);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ftl {
    display: block;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .45);
    padding: 4px 0;
    transition: color .2s
}

.ftl:hover {
    color: var(--b)
}

.ftbt {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .3)
}

.ftbt a {
    color: rgba(255, 255, 255, .4);
    margin-left: 16px
}

.ftbt a:hover {
    color: var(--b)
}

/* ==========================================================================
   WORDPRESS CONTENT
   ========================================================================== */
.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body)
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: var(--fh);
    color: var(--dk);
    margin: 1.5em 0 0.5em
}

.entry-content p {
    margin-bottom: 1em
}

.entry-content a {
    color: var(--b);
    text-decoration: underline
}

.entry-content img {
    border-radius: var(--r);
    margin: 1.5em 0
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1em 1.5em
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px
    }

    .dpg {
        grid-template-columns: repeat(4, 1fr)
    }

    .bg,
    .stg,
    .wyg {
        grid-template-columns: repeat(2, 1fr)
    }

    .ftg {
        grid-template-columns: 1fr 1fr
    }

    .sg {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px
    }

    .fg {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {

    /* Hide desktop nav and buttons */
    .nl {
        display: none
    }

    .na {
        display: none
    }

    .mt {
        display: block
    }

    /* Mobile nav panel — slides down from header */
    .nl.open {
        display: flex;
        flex-direction: column;
        height: 100vh;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--wh);
        padding: 24px;
        gap: 0;
        z-index: 10000;
        overflow-y: auto;
        animation: bml-slide-in 0.3s ease-out;
    }

    @keyframes bml-slide-in {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Nav links stack vertically */
    .nl.open .nl-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--br);
        margin-bottom: 20px;
    }

    .nl.open .nl-links a {
        display: block;
        padding: 14px 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--dk);
        border-bottom: 1px solid #f1f5f9;
        transition: color 0.2s;
        text-align: left;
    }

    .nl.open .nl-links a:last-child {
        border-bottom: none;
    }

    .nl.open .nl-links a:hover,
    .nl.open .nl-links a.active {
        color: var(--b);
    }

    /* Show auth buttons in mobile menu */
    .nl.open .nl-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nl.open .nl-actions .bo,
    .nl.open .nl-actions .bs {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 120px 0 80px
    }

    .hero h1 {
        font-size: 36px
    }

    .hs {
        font-size: 15px
    }

    .ht {
        gap: 16px
    }

    .ht-i {
        font-size: 12px
    }

    .sec {
        padding: 60px 0
    }

    .st {
        font-size: 26px
    }

    .wg,
    .cg2,
    .spg {
        grid-template-columns: 1fr
    }

    .spv {
        display: none
    }

    .ci {
        flex-direction: column;
        gap: 18px;
        text-align: center
    }

    .ctx {
        font-size: 21px
    }

    .ftg {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .ftbt {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .dpg {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px
    }

    .sn {
        font-size: 30px
    }

    .dpg {
        grid-template-columns: repeat(2, 1fr)
    }

    .bg {
        grid-template-columns: 1fr
    }
}

/* ==========================================================================
   PAGE HEADER (reusable for all inner pages)
   ========================================================================== */
.pg-header {
    padding: 130px 0 56px;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.pg-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pg-header .c {
    position: relative;
    z-index: 1;
}

.pg-header .bdg {
    background: rgba(30, 136, 229, 0.15);
    color: #60a5fa;
}

.pg-header .st {
    color: #ffffff;
    margin-bottom: 14px;
}

.pg-header .sd {
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   TEAM CARDS
   ========================================================================== */
.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}

.tm-card {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.tm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--b);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.tm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.tm-card:hover::after {
    opacity: 1;
}

.tm-photo {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.tm-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tm-card:hover .tm-photo img {
    transform: scale(1.04);
}

.tm-info {
    padding: 20px 22px;
    text-align: center;
}

.tm-name {
    font-family: var(--fh);
    font-size: 17px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 2px;
}

.tm-role {
    font-size: 13px;
    color: var(--gy);
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .pg-header {
        padding: 100px 0 40px;
    }

    .pg-header .st {
        font-size: 28px;
    }

    .tm-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}


/* ==========================================================================
   ADVERTISERS PAGE — Split Hero & Feature Cards
   ========================================================================== */

/* --- Split layout: image left + 2×2 grid right --- */
.adv-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.adv-split-media {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
}

.adv-split-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Metric bar overlay on the image */
.adv-split-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
    padding: 40px 24px 20px;
    display: flex;
    justify-content: space-around;
}

.adv-metric {
    text-align: center;
}

.adv-metric-val {
    display: block;
    font-family: var(--fh);
    font-size: 28px;
    font-weight: 800;
    color: var(--b);
    line-height: 1;
    margin-bottom: 4px;
}

.adv-metric-lbl {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* 2×2 feature grid on the right */
.adv-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.adv-feat-card {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.adv-feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--b);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.adv-feat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.adv-feat-card:hover::after {
    opacity: 1;
}

.adv-feat-card .bn {
    margin: 0 auto 14px;
}

.adv-feat-card h3 {
    font-family: var(--fh);
    font-size: 16px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 6px;
}

.adv-feat-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gy);
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .adv-split {
        gap: 28px;
    }

    .adv-split-media img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .adv-split {
        grid-template-columns: 1fr;
    }

    .adv-split-media img {
        height: 280px;
    }

    .adv-split-grid {
        grid-template-columns: 1fr 1fr;
    }

    .adv-metric-val {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .adv-split-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SAMPLE DATA PAGE
   ========================================================================== */

/* --- Tool wrapper — centers the plugin shortcode output --- */
.sd-tool-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.sd-tool-wrap #pdm-sample-tool-wrapper{
    background: unset!important;
    box-shadow: unset!important;
    border: unset!important;
    border-radius: unset!important;
    margin: unset!important;
    max-width: unset!important;
}

.sd-tool-wrap .pdm-tool-body{
    padding: 5px!important;
}

.sd-tool-wrap .pdm-tool-header{
    padding: 0!important;
    background: unset!important;
    padding-bottom: 20px!important;
    margin-bottom: 20px!important;
}

/* --- Data fields split: Property vs Agent side by side --- */
.sd-fields-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.sd-fields-title {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 22px;
    padding: 12px 18px;
    background: var(--wh);
    border: 1px solid var(--br);
    border-left: 3px solid var(--b);
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sd-fields-title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--b);
    flex-shrink: 0;
}

.sd-fields-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .sd-tool-wrap {
        padding: 24px 18px;
    }

    .sd-fields-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sd-fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sd-fields-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   AUTH PAGES (Sign In, Sign Up, Forgot Password)
   ========================================================================== */
.auth-wrap {
    max-width: 520px;
    margin: 0 auto;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* --- Left: Info column --- */
.contact-info-heading {
    font-family: var(--fh);
    font-size: 28px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 12px;
    line-height: 1.25;
}

.contact-info-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mt);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--br);
    border-radius: var(--r);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--b);
    box-shadow: 0 4px 16px rgba(30, 136, 229, 0.06);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    color: var(--b);
}

.contact-card h3 {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gy);
    margin: 0;
}

.contact-card a {
    font-size: 14px;
    font-weight: 600;
    color: var(--b);
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--bd);
}

/* --- Right: Form column --- */
.contact-form-wrap {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 8px;
    min-height: 788px;
    overflow: hidden;
}

.contact-form-wrap iframe {
    min-height: 780px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-wrap {
        min-height: 800px;
    }
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ========================================================================== */
.legal-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.legal-notice {
    background: var(--bl);
    border: 1px solid #bbdefb;
    border-left: 4px solid var(--b);
    border-radius: 0 var(--r) var(--r) 0;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.legal-notice h3 {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    color: var(--b);
    margin-bottom: 8px;
}

.legal-notice p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--mt);
    margin: 0;
}

.legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--br);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 16px;
    line-height: 1.3;
}

.legal-section h3 {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 700;
    color: var(--dk);
    margin: 20px 0 8px;
}

.legal-section h3:first-child {
    margin-top: 0;
}

.legal-section p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--mt);
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-contact {
    background: var(--bg);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--mt);
    margin-top: 12px;
}

.legal-contact strong {
    color: var(--dk);
}

.legal-contact a {
    color: var(--b);
    font-weight: 600;
}

.legal-contact a:hover {
    color: var(--bd);
}

@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 19px;
    }

    .legal-notice {
        padding: 18px 20px;
    }
}

/* ==========================================================================
   FSBO PAGE
   ========================================================================== */

/* ---------- FSBO Hero ---------- */
.fsbo-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.fsbo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fsbo-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.fsbo-hero-bdg {
    background: rgba(30, 136, 229, 0.15);
    color: #60a5fa;
}

.fsbo-hero-text h1 {
    font-family: var(--fh);
    font-size: 44px;
    font-weight: 900;
    color: var(--wh);
    line-height: 1.1;
    margin: 16px 0;
    letter-spacing: -0.02em;
}

.fsbo-hero-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    max-width: 480px;
}

.fsbo-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fsbo-hero-bo {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.fsbo-hero-bo:hover {
    color: var(--wh);
    border-color: rgba(255, 255, 255, 0.5);
}

.fsbo-hero-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.fsbo-hero-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

/* ---------- Why FSBO — split ---------- */
.fsbo-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.fsbo-why-heading {
    font-family: var(--fh);
    font-size: 32px;
    font-weight: 700;
    color: var(--dk);
    margin: 12px 0 16px;
}

.fsbo-why-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mt);
    margin-bottom: 12px;
}

.fsbo-checks {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fsbo-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dk);
}

.fsbo-checks svg {
    color: var(--b);
    flex-shrink: 0;
}

.fsbo-checks-light li {
    color: rgba(255, 255, 255, 0.8);
}

.fsbo-checks-light svg {
    color: #60a5fa;
}

/* Challenge card */
.fsbo-why-card {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 32px;
}

.fsbo-why-card h3 {
    font-family: var(--fh);
    font-size: 22px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 8px;
}

.fsbo-why-card>p {
    font-size: 14px;
    color: var(--gy);
    margin-bottom: 20px;
}

.fsbo-challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fsbo-challenge {
    text-align: center;
    padding: 20px 14px;
    background: var(--bg);
    border-radius: 10px;
}

.fsbo-challenge-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 10px;
    background: var(--bl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fsbo-challenge-icon svg {
    color: var(--b);
}

.fsbo-challenge h4 {
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 4px;
}

.fsbo-challenge p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--gy);
    margin: 0;
}

/* ---------- Solution 3×2 grid ---------- */
.fsbo-feat-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ---------- Developer Section ---------- */
.fsbo-dev {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.fsbo-dev::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fsbo-dev-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.fsbo-dev-bdg {
    background: rgba(30, 136, 229, 0.15);
    color: #60a5fa;
}

.fsbo-dev-text h2 {
    font-family: var(--fh);
    font-size: 32px;
    font-weight: 700;
    color: var(--wh);
    margin: 16px 0;
    line-height: 1.2;
}

.fsbo-dev-text p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

/* Code block */
.fsbo-dev-code {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fsbo-code-header {
    padding: 12px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fsbo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fsbo-dev-code pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
    font-size: 12.5px;
    line-height: 1.7;
    color: #c9d1d9;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

.code-kw {
    color: #ff7b72;
}

.code-str {
    color: #a5d6ff;
}

.code-key {
    color: #79c0ff;
}

.code-val {
    color: #ffa657;
}

.code-cmt {
    color: #6e7681;
    font-style: italic;
}

/* ---------- Pricing Cards ---------- */
.fsbo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.fsbo-plan {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.fsbo-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.fsbo-plan-featured {
    background: var(--dk);
    border-color: var(--dk);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.fsbo-plan-featured:hover {
    transform: translateY(-12px);
}

.fsbo-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--b);
    color: var(--wh);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.fsbo-plan-name {
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 8px;
}

.fsbo-plan-featured .fsbo-plan-name {
    color: var(--wh);
}

.fsbo-plan-price {
    font-family: var(--fh);
    font-size: 36px;
    font-weight: 800;
    color: var(--dk);
    margin-bottom: 4px;
}

.fsbo-plan-featured .fsbo-plan-price {
    color: var(--b);
}

.fsbo-plan-period {
    font-size: 14px;
    font-weight: 500;
    color: var(--gy);
}

.fsbo-plan-featured .fsbo-plan-period {
    color: rgba(255, 255, 255, 0.4);
}

.fsbo-plan-desc {
    font-size: 13px;
    color: var(--gy);
    margin-bottom: 24px;
}

.fsbo-plan-featured .fsbo-plan-desc {
    color: rgba(255, 255, 255, 0.5);
}

.fsbo-plan-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 24px;
}

/* ---------- FSBO Responsive ---------- */
@media (max-width: 1024px) {
    .fsbo-hero-text h1 {
        font-size: 36px;
    }

    .fsbo-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fsbo-hero {
        padding: 110px 0 60px;
    }

    .fsbo-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fsbo-hero-text h1 {
        font-size: 30px;
    }

    .fsbo-hero-img img {
        height: 240px;
    }

    .fsbo-why {
        grid-template-columns: 1fr;
    }

    .fsbo-dev-grid {
        grid-template-columns: 1fr;
    }

    .fsbo-feat-grid {
        grid-template-columns: 1fr;
    }

    .fsbo-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .fsbo-plan-featured {
        transform: none;
    }

    .fsbo-plan-featured:hover {
        transform: translateY(-4px);
    }
}

/* ==========================================================================
   PRICING PAGE — flat vertical cards
   ========================================================================== */

/* --- Pricing grid: 4 cols × 2 rows on desktop --- */
.pr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* --- Single vertical pricing card --- */
.pr-card {
    background: var(--wh);
    border: 1px solid var(--br);
    border-radius: var(--r);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
}

.pr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
    border-color: rgba(30, 136, 229, 0.35);
}

/* Card head: icon, title, region pill */
.pr-card-head {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--br);
}

.pr-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bl);
    color: var(--b);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pr-card-title {
    font-family: var(--fh);
    font-size: 18px;
    font-weight: 700;
    color: var(--dk);
    margin: 0 0 8px;
    line-height: 1.3;
}

.pr-card-region {
    display: inline-block;
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--b);
    background: var(--bl);
    padding: 5px 12px;
    border-radius: 100px;
}

/* Feature list */
.pr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pr-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--mt);
    margin: 0;
}

.pr-features svg {
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 3px;
}

/* CTA — full width, anchored to bottom */
.pr-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    background: var(--b);
    color: var(--wh);
    border-radius: 9px;
    font-family: var(--fb);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.25s;
    text-align: center;
    margin-top: auto;
}

.pr-cta:hover {
    background: var(--bd);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.28);
    color: var(--wh);
}

.pr-cta svg {
    width: 14px;
    height: 14px;
}

/* Includes grid — 3×2 */
.pr-includes-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Quote page */
.quote-wrap {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .pr-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 880px) {
    .pr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pr-includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .pr-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pr-includes-grid {
        grid-template-columns: 1fr;
    }

    .pr-card { padding: 24px 20px; }
}

/* ==========================================================================
   PROPERTY & AGENT ARCHIVE / SINGLE / MAP TEMPLATES
   ========================================================================== */

/* Archive pages — padding to clear fixed header */
.pdm-archive-section {
    padding: 88px 0 60px;
}

/* Single property/agent — padding to clear fixed header */
.pdm-single-section {
    padding: 80px 0 60px;
}

/* Map search — full viewport below header */
.pdm-map-section {
    padding-top: 64px;
}

@media (max-width: 768px) {
    .pdm-archive-section {
        padding: 78px 0 40px;
    }

    .pdm-single-section {
        padding: 72px 0 40px;
    }
}

/* ==========================================================================
   PROPERTY & AGENT ARCHIVE / SINGLE / MAP PAGES
   ========================================================================== */

/* Single property/agent — top padding for fixed header */
.pdm-single-section {
    padding: 90px 0 60px;
}

/* Map search — full viewport below header */
.pdm-map-section {
    padding-top: 64px;
    min-height: calc(100vh - 64px);
}

/* Remove max-width constraint on map so it goes edge-to-edge */
.pdm-map-section .pdm-full-map-layout {
    max-width: none;
}

/* ==========================================================================
   DATA PLATFORM PAGE
   ========================================================================== */

/* --- Stats row --- */
.dp-stats-row {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--br);
    padding-top: 32px;
}

.dp-stat {
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--br);
    padding: 0 16px;
}

.dp-stat:last-child {
    border-right: none;
}

.dp-stat-num {
    display: block;
    font-family: var(--fh);
    font-size: 36px;
    font-weight: 700;
    color: var(--b);
    line-height: 1;
    margin-bottom: 6px;
}

.dp-stat-lbl {
    font-size: 13px;
    color: var(--mt);
    font-weight: 500;
}

/* --- Sample data table --- */
.dp-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--br);
    background: var(--wh);
}

.dp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 800px;
}

.dp-table thead {
    background: var(--b);
}

.dp-table thead th {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wh);
    text-align: left;
    white-space: nowrap;
}

.dp-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--body);
    white-space: nowrap;
}

.dp-table tbody tr:hover {
    background: var(--bg);
}

.dp-table tbody tr:last-child td {
    border-bottom: none;
}

.dp-masked {
    color: #94a3b8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .dp-stats-row {
        flex-wrap: wrap;
    }

    .dp-stat {
        flex: 0 0 50%;
        margin-bottom: 20px;
        border-right: none;
    }
}

@media (max-width: 480px) {
    .dp-stat-num {
        font-size: 28px;
    }
}