/* ═══════════════════════════════════════════════════════════
 *  css/pages/loplandloard.css — Land of Profits
 *  Page-specific styles for loplandloard.html.
 * ═══════════════════════════════════════════════════════════ */

*,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        background: var(--cream);
        color: var(--ink);
        font-size: 15px;
        line-height: 1.65;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      button {
        font-family: var(--sans);
        cursor: pointer;
        border: none;
        outline: none;
      }
      input,
      select,
      textarea {
        font-family: var(--sans);
      }
      .lop-sfx {
        color: var(--gold);
        font-weight: 600;
      }

      /* ══ FLOATS ═══════════════════════════════════════════ */
      .fl-l {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg) translateX(-50%);
        transform-origin: left center;
        z-index: 100;
      }
      .fl-r {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(90deg) translateX(50%);
        transform-origin: right center;
        z-index: 100;
      }
      .fl-btn {
        background: var(--mocha);
        color: var(--white);
        padding: 10px 20px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        white-space: nowrap;
      }

      /* ══ HERO ═════════════════════════════════════════════ */
      #hero {
        min-height: 100vh;
        background: var(--navy);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        padding: 100px 5% 80px;
        position: relative;
        overflow: hidden;
      }
      #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 55% 70% at 72% 42%,
          rgba(139, 58, 42, 0.18) 0%,
          transparent 65%
        );
      }
      #hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 52%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 900'%3E%3Ccircle cx='350' cy='450' r='340' fill='none' stroke='%23C9A96E' stroke-width='0.6' stroke-opacity='0.10'/%3E%3Ccircle cx='350' cy='450' r='230' fill='none' stroke='%238B3A2A' stroke-width='0.5' stroke-opacity='0.14'/%3E%3Ccircle cx='350' cy='450' r='130' fill='none' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.08'/%3E%3Cpath d='M200 760 L350 200 L500 760 Z' fill='none' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.07'/%3E%3Cline x1='100' y1='450' x2='600' y2='450' stroke='%238B3A2A' stroke-width='0.3' stroke-opacity='0.07'/%3E%3C/svg%3E")
          center/cover;
        opacity: 0.8;
        pointer-events: none;
      }
      .hero-left {
        position: relative;
        z-index: 2;
      }
      .lb-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
        background: rgba(139, 58, 42, 0.18);
        border: 1px solid rgba(196, 88, 42, 0.38);
        color: #f0a080;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 20px;
      }
      .lb-badge .v-ico {
        width: 16px;
        height: 16px;
        background: var(--rust);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .lb-badge .v-ico svg {
        width: 9px;
        height: 9px;
        stroke: var(--white);
        fill: none;
        stroke-width: 3;
      }
      h1.hero-h1 {
        font-family: var(--serif);
        font-size: clamp(44px, 5vw, 68px);
        font-weight: 600;
        line-height: 1.04;
        letter-spacing: -0.5px;
        color: var(--white);
        margin-bottom: 14px;
      }
      h1.hero-h1 em {
        font-style: italic;
        color: var(--gold);
      }
      .hero-tagline {
        font-family: var(--serif);
        font-size: clamp(17px, 1.9vw, 21px);
        font-style: italic;
        color: rgba(255, 255, 255, 0.42);
        margin-bottom: 22px;
      }
      .hero-desc {
        font-size: 15px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.75;
        max-width: 480px;
        margin-bottom: 36px;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 48px;
      }
      .btn-rust {
        background: var(--rust);
        color: var(--white);
        padding: 14px 32px;
        border-radius: var(--r6);
        font-size: 14px;
        font-weight: 600;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-rust:hover {
        background: var(--rust2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(139, 58, 42, 0.35);
      }
      .btn-rust svg,
      .btn-ow svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .btn-ow {
        background: transparent;
        color: rgba(255, 255, 255, 0.78);
        padding: 13px 26px;
        border-radius: var(--r6);
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-ow:hover {
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--white);
      }
      .hero-stats {
        display: flex;
        gap: 20px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
      .hs {
        text-align: center;
      }
      .hs-num {
        font-family: var(--serif);
        font-size: 28px;
        font-weight: 600;
        color: var(--gold);
        line-height: 1;
      }
      .hs-lbl {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.35);
        letter-spacing: 0.5px;
        margin-top: 3px;
      }
      .hs-div {
        width: 1px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
      }

      /* Hero right — register card */
      .hero-right {
        position: relative;
        z-index: 2;
      }
      .reg-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(201, 169, 110, 0.22);
        border-radius: var(--r20);
        padding: 36px;
        backdrop-filter: blur(8px);
      }
      .rc-title {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 5px;
      }
      .rc-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.38);
        font-weight: 300;
        margin-bottom: 24px;
      }
      /* Tier tabs */
      .tier-tabs {
        display: flex;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--r10);
        padding: 4px;
        margin-bottom: 22px;
      }
      .ttab {
        flex: 1;
        padding: 9px 8px;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.45);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s;
      }
      .ttab.active {
        background: var(--gold);
        color: var(--navy);
      }
      .rf {
        margin-bottom: 13px;
      }
      .rf label {
        display: block;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.28);
        font-weight: 500;
        margin-bottom: 5px;
      }
      .ri {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--r6);
        padding: 11px 13px;
        color: rgba(255, 255, 255, 0.85);
        font-family: var(--sans);
        font-size: 13.5px;
        outline: none;
        transition: border-color 0.15s;
        appearance: none;
      }
      .ri:focus {
        border-color: rgba(139, 58, 42, 0.5);
        background: rgba(255, 255, 255, 0.09);
      }
      .ri option {
        background: var(--navy2);
      }
      .rrow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-rc {
        width: 100%;
        background: var(--gold);
        color: var(--navy);
        padding: 14px;
        border-radius: var(--r10);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.15s;
        margin-top: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
      .btn-rc:hover {
        background: var(--gold2);
      }
      .btn-rc svg {
        width: 15px;
        height: 15px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
      }
      .rc-footer {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
      }
      .rc-footer svg {
        width: 13px;
        height: 13px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .rc-footer p {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.28);
        line-height: 1.5;
      }

      /* Breadcrumb */
      .bc-strip {
        background: var(--mocha3);
        padding: 14px 40px;
      }
      .bc-inner {
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .bc-strip a {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
        transition: color 0.15s;
      }
      .bc-strip a:hover {
        color: var(--gold);
      }
      .bc-strip svg {
        width: 10px;
        height: 10px;
        stroke: rgba(255, 255, 255, 0.15);
        fill: none;
        stroke-width: 2;
      }
      .bc-strip span {
        font-size: 12px;
        color: var(--gold);
      }

      /* ══ SECTIONS ══════════════════════════════════════════ */
      .section {
        padding: 88px 40px;
      }
      .sec-inner {
        max-width: 1240px;
        margin: 0 auto;
      }
      .ey {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 14px;
        color: var(--rust);
      }
      .ey-lt {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 14px;
        color: #f0a080;
      }
      .ey-gold {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 14px;
        color: var(--gold);
      }
      h2.st {
        font-family: var(--serif);
        font-size: clamp(30px, 3.2vw, 46px);
        font-weight: 600;
        letter-spacing: -0.4px;
        line-height: 1.1;
        color: var(--ink);
        margin-bottom: 14px;
      }
      h2.st.lt {
        color: var(--white);
      }
      h2.st em {
        font-style: italic;
        color: var(--rust);
      }
      h2.st.lt em {
        color: var(--gold);
      }
      .ss {
        font-size: 15px;
        font-weight: 300;
        color: var(--slate);
        max-width: 540px;
        line-height: 1.75;
      }
      .ss.lt {
        color: rgba(255, 255, 255, 0.5);
      }
      .tc {
        text-align: center;
      }
      .tc .ss {
        margin: 0 auto;
      }

      /* ══ WHAT IS LOPLANLDLORD ══════════════════════════════ */
      #what {
        background: var(--white);
      }
      .what-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .wv-main {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 45%, var(--rust) 100%);
        border-radius: var(--r20);
        height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 18px;
        overflow: hidden;
        position: relative;
      }
      .wv-main::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.09;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.4) 0,
          rgba(201, 169, 110, 0.4) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 18px 18px;
      }
      .wv-badge {
        position: relative;
        z-index: 2;
        text-align: center;
        background: rgba(201, 169, 110, 0.12);
        border: 1px solid rgba(201, 169, 110, 0.28);
        border-radius: var(--r14);
        padding: 22px 30px;
      }
      .wvb-lop {
        font-family: var(--serif);
        font-size: 38px;
        font-weight: 700;
        color: var(--white);
      }
      .wvb-lop span {
        color: var(--gold);
      }
      .wvb-sub {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.42);
        margin-top: 5px;
      }
      .wv-pill {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(139, 58, 42, 0.22);
        border: 1px solid rgba(196, 88, 42, 0.4);
        border-radius: 20px;
        padding: 7px 15px;
      }
      .wv-pill svg {
        width: 13px;
        height: 13px;
        stroke: #f0a080;
        fill: none;
        stroke-width: 2.5;
      }
      .wv-pill span {
        font-size: 12px;
        font-weight: 600;
        color: #f0a080;
        letter-spacing: 0.5px;
      }
      .wv-stats-row {
        display: flex;
        gap: 22px;
        position: relative;
        z-index: 2;
      }
      .wvs {
        text-align: center;
      }
      .wvs-num {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 600;
        color: var(--gold);
      }
      .wvs-lbl {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.38);
        margin-top: 2px;
      }
      /* Floating tier badges */
      .wv-tiers {
        position: absolute;
        top: 16px;
        right: -16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 4;
      }
      .wv-tier-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--white);
        border-radius: var(--r10);
        padding: 9px 13px;
        box-shadow: var(--sh-md);
        min-width: 110px;
      }
      .wv-tier-badge .tdot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .wv-tier-badge .tname {
        font-size: 12px;
        font-weight: 600;
        color: var(--ink);
      }
      .wv-tier-badge .tcnt {
        font-size: 10px;
        color: var(--ghost);
        margin-left: auto;
      }
      .what-content p {
        font-size: 15px;
        color: var(--slate);
        line-height: 1.75;
        font-weight: 300;
        margin-bottom: 14px;
      }
      .bullets {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
      }
      .bullet-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
        color: var(--ink);
      }
      .b-ico {
        width: 22px;
        height: 22px;
        background: var(--rust-lt);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
        border: 1px solid rgba(139, 58, 42, 0.2);
      }
      .b-ico svg {
        width: 11px;
        height: 11px;
        stroke: var(--rust2);
        fill: none;
        stroke-width: 3;
      }

      /* ══ HOW IT WORKS ══════════════════════════════════════ */
      #how {
        background: var(--navy);
      }
      .steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        position: relative;
      }
      .steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: rgba(201, 169, 110, 0.12);
        z-index: 0;
      }
      .step {
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 10px;
      }
      .step-ring {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s;
      }
      .step:hover .step-ring {
        background: rgba(139, 58, 42, 0.18);
        border-color: rgba(196, 88, 42, 0.35);
      }
      .step.active .step-ring {
        background: var(--rust);
        border-color: var(--rust);
      }
      .step-ring svg {
        width: 22px;
        height: 22px;
        stroke: rgba(255, 255, 255, 0.4);
        fill: none;
        stroke-width: 1.8;
      }
      .step.active .step-ring svg {
        stroke: var(--white);
      }
      .step h4 {
        font-family: var(--serif);
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 7px;
      }
      .step p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.36);
        line-height: 1.6;
        font-weight: 300;
      }

      /* ══ MEMBERSHIP TIERS ══════════════════════════════════ */
      #tiers {
        background: var(--cream);
      }
      .tiers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 52px;
      }
      .tier-card {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        overflow: hidden;
        transition: all 0.22s;
        position: relative;
      }
      .tier-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-md);
      }
      .tier-card.featured {
        border-color: var(--gold-tier);
        box-shadow: 0 0 0 1px var(--gold-tier);
      }
      .tc-feat-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: var(--gold);
        color: var(--navy);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 0 var(--r20) 0 var(--r10);
      }
      .tc-head {
        padding: 28px 26px 22px;
        border-bottom: 1px solid var(--fog);
      }
      .tc-name {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--rust);
        margin-bottom: 10px;
      }
      .tc-price {
        font-family: var(--serif);
        font-size: 42px;
        font-weight: 700;
        color: var(--ink);
        line-height: 1;
      }
      .tc-price sup {
        font-size: 20px;
        font-weight: 500;
        vertical-align: super;
      }
      .tc-price-lbl {
        font-size: 11px;
        color: var(--ghost);
        margin-top: 4px;
      }
      .tc-body {
        padding: 20px 26px 26px;
      }
      .tc-desc {
        font-size: 13px;
        color: var(--slate);
        line-height: 1.6;
        font-weight: 300;
        margin-bottom: 18px;
        min-height: 44px;
      }
      .tc-perks {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 22px;
      }
      .tc-perk {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--ink);
      }
      .tc-perk svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke-width: 2.5;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .tc-perk.off {
        color: var(--ghost);
      }
      .tc-perk.off svg {
        stroke: var(--fog) !important;
      }
      .btn-tier {
        width: 100%;
        padding: 12px;
        border-radius: var(--r10);
        font-size: 13.5px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.15s;
        cursor: pointer;
      }
      .btn-tier-outline {
        background: transparent;
        color: var(--rust);
        border: 1px solid rgba(139, 58, 42, 0.28);
      }
      .btn-tier-outline:hover {
        background: var(--rust-lt);
      }
      .btn-tier-gold {
        background: var(--gold);
        color: var(--navy);
      }
      .btn-tier-gold:hover {
        background: var(--gold2);
      }

      /* ══ BENEFITS ══════════════════════════════════════════ */
      #benefits {
        background: var(--white);
      }
      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 52px;
      }
      .ben-card {
        background: var(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        padding: 28px 24px;
        transition: all 0.22s;
        position: relative;
        overflow: hidden;
      }
      .ben-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--rust), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .ben-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-md);
        border-color: rgba(139, 58, 42, 0.2);
      }
      .ben-card:hover::after {
        transform: scaleX(1);
      }
      .ben-ico {
        width: 48px;
        height: 48px;
        background: var(--rust-lt);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        border: 1px solid rgba(139, 58, 42, 0.15);
      }
      .ben-ico svg {
        width: 22px;
        height: 22px;
        stroke: var(--rust2);
        fill: none;
        stroke-width: 1.8;
      }
      .ben-card h3 {
        font-family: var(--serif);
        font-size: 19px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 9px;
      }
      .ben-card p {
        font-size: 13.5px;
        color: var(--slate);
        line-height: 1.7;
        font-weight: 300;
      }

      /* ══ PORTFOLIO DASHBOARD PREVIEW ═══════════════════════ */
      #dashboard {
        background: var(--navy);
      }
      .dash-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
        margin-top: 0;
      }
      /* Mock dashboard */
      .dash-mock {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(201, 169, 110, 0.15);
        border-radius: var(--r20);
        overflow: hidden;
      }
      .dash-header {
        background: rgba(255, 255, 255, 0.06);
        padding: 16px 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .dash-title {
        font-family: var(--serif);
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
      }
      .dash-badge {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: var(--gold);
        background: rgba(201, 169, 110, 0.14);
        padding: 3px 9px;
        border-radius: 20px;
        border: 1px solid rgba(201, 169, 110, 0.25);
      }
      .dash-stats {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }
      .dash-stat {
        padding: 16px 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
      }
      .dash-stat:last-child {
        border-right: none;
      }
      .ds-num {
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 3px;
      }
      .ds-lbl {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.35);
        letter-spacing: 0.3px;
      }
      .dash-properties {
        padding: 16px 20px;
      }
      .dp-label {
        font-size: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        font-weight: 600;
        margin-bottom: 12px;
      }
      .dp-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: var(--r10);
        margin-bottom: 8px;
      }
      .dp-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .dp-dot.occupied {
        background: #5ecfb8;
      }
      .dp-dot.vacant {
        background: #f0a080;
      }
      .dp-dot.maintenance {
        background: #c9a96e;
      }
      .dp-name {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.75);
        flex: 1;
      }
      .dp-status {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.3px;
      }
      .dp-status.occupied {
        color: #5ecfb8;
      }
      .dp-status.vacant {
        color: #f0a080;
      }
      .dp-status.maintenance {
        color: var(--gold);
      }
      .dp-rent {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 300;
      }
      .dash-actions {
        padding: 14px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        display: flex;
        gap: 8px;
      }
      .da-btn {
        flex: 1;
        padding: 9px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: var(--r6);
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
        cursor: default;
        transition: all 0.15s;
      }
      .da-btn:hover {
        background: rgba(139, 58, 42, 0.2);
        color: rgba(255, 255, 255, 0.8);
      }
      /* Right text */
      .dash-content .feature-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 28px;
      }
      .feat-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--r14);
        transition: all 0.2s;
      }
      .feat-item:hover {
        background: rgba(139, 58, 42, 0.08);
        border-color: rgba(196, 88, 42, 0.2);
      }
      .fi-ico {
        width: 38px;
        height: 38px;
        background: rgba(139, 58, 42, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .fi-ico svg {
        width: 18px;
        height: 18px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
      }
      .fi-title {
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 3px;
      }
      .fi-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.55;
        font-weight: 300;
      }

      /* ══ INCLUDED — ACCORDION ═════════════════════════════ */
      #included {
        background: var(--cream);
      }
      .inc-layout {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 28px;
        margin-top: 52px;
        align-items: start;
      }
      .inc-nav {
        position: sticky;
        top: 96px;
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        overflow: hidden;
      }
      .inc-nav-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 17px;
        border-bottom: 1px solid var(--fog);
        cursor: pointer;
        transition: all 0.15s;
        font-size: 13px;
        font-weight: 500;
        color: var(--slate);
      }
      .inc-nav-item:last-child {
        border-bottom: none;
      }
      .inc-nav-item:hover {
        background: var(--smoke);
        color: var(--rust);
      }
      .inc-nav-item.active {
        background: var(--mist);
        color: var(--rust);
        border-left: 3px solid var(--rust);
      }
      .inc-nav-item svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }
      .inc-blocks {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .inc-block {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        overflow: hidden;
      }
      .inc-hdr {
        padding: 18px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        transition: background 0.15s;
      }
      .inc-hdr:hover {
        background: var(--smoke);
      }
      .inc-hdr.open {
        background: var(--mist);
      }
      .inc-hdr h3 {
        font-family: var(--serif);
        font-size: 17px;
        font-weight: 600;
        color: var(--ink);
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .inc-hdr h3 .iico {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .inc-meta {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .inc-cnt {
        font-size: 11px;
        color: var(--ghost);
        background: var(--fog);
        padding: 3px 8px;
        border-radius: 20px;
        font-weight: 400;
      }
      .chevron {
        width: 16px;
        height: 16px;
        stroke: var(--ghost);
        fill: none;
        stroke-width: 2;
        transition: transform 0.2s;
        flex-shrink: 0;
      }
      .inc-hdr.open .chevron {
        transform: rotate(180deg);
        stroke: var(--rust);
      }
      .inc-body {
        padding: 18px 22px;
      }
      .inc-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
      }
      .inc-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--ink);
        line-height: 1.5;
      }
      .inc-item svg {
        width: 15px;
        height: 15px;
        stroke: var(--ok);
        fill: none;
        stroke-width: 2.2;
        flex-shrink: 0;
        margin-top: 1px;
      }

      /* ══ CTA BAND ══════════════════════════════════════════ */
      #cta-band {
        background: var(--rust);
        padding: 72px 40px;
        text-align: center;
      }
      .cta-inner {
        max-width: 600px;
        margin: 0 auto;
      }
      .cta-inner h2 {
        font-family: var(--serif);
        font-size: 40px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 14px;
        line-height: 1.1;
      }
      .cta-inner h2 em {
        font-style: italic;
        color: var(--gold);
      }
      .cta-inner p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 300;
        margin-bottom: 36px;
        line-height: 1.7;
      }
      .cta-btns {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-cta-w {
        background: var(--white);
        color: var(--rust);
        padding: 14px 32px;
        border-radius: var(--r6);
        font-size: 14px;
        font-weight: 600;
        transition: all 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
      }
      .btn-cta-w:hover {
        background: var(--cream);
        transform: translateY(-2px);
      }
      .btn-cta-w svg {
        width: 16px;
        height: 16px;
        stroke: var(--rust);
        fill: none;
        stroke-width: 2;
      }
      .btn-cta-ow {
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        padding: 13px 28px;
        border-radius: var(--r6);
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, 0.28);
        transition: all 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
      }
      .btn-cta-ow:hover {
        border-color: rgba(255, 255, 255, 0.6);
        color: var(--white);
      }
      .btn-cta-ow svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .cta-trust {
        display: flex;
        justify-content: center;
        gap: 28px;
        margin-top: 28px;
        flex-wrap: wrap;
      }
      .ct {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.42);
      }
      .ct svg {
        width: 13px;
        height: 13px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
      }

      /* ══ TESTIMONIALS ══════════════════════════════════════ */
      #testimonials {
        background: var(--white);
      }
      .test-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 48px;
      }
      .test-card {
        background: var(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        padding: 26px;
        transition: all 0.2s;
      }
      .test-card:hover {
        border-color: rgba(201, 169, 110, 0.3);
        box-shadow: var(--sh-md);
      }
      .test-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 12px;
      }
      .test-stars svg {
        width: 13px;
        height: 13px;
        fill: var(--gold);
      }
      .test-quote {
        font-size: 14px;
        color: #3a3830;
        line-height: 1.7;
        font-weight: 300;
        margin-bottom: 16px;
        font-style: italic;
      }
      .test-author {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .test-ava {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 600;
        flex-shrink: 0;
      }
      .test-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink);
      }
      .test-detail {
        font-size: 11px;
        color: var(--ghost);
      }
      .test-tag {
        display: inline-block;
        font-size: 10px;
        padding: 2px 8px;
        border-radius: 20px;
        font-weight: 600;
        margin-top: 3px;
        background: var(--rust-lt);
        color: var(--rust2);
      }

      /* ══ FAQ ═══════════════════════════════════════════════ */
      #faq {
        background: var(--cream);
        padding: 88px 40px;
      }
      .faq-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
      }
      .faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .faq-item {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r10);
        overflow: hidden;
      }
      .faq-q {
        padding: 17px 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--ink);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        transition: background 0.15s;
      }
      .faq-q:hover {
        background: var(--smoke);
      }
      .faq-q svg {
        width: 16px;
        height: 16px;
        stroke: var(--ghost);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        transition: transform 0.2s;
      }
      .faq-item.open .faq-q svg {
        transform: rotate(180deg);
        stroke: var(--rust);
      }
      .faq-item.open .faq-q {
        color: var(--rust);
      }
      .faq-a {
        display: none;
        padding: 0 20px 17px;
        font-size: 13px;
        color: var(--slate);
        line-height: 1.7;
        font-weight: 300;
      }
      .faq-item.open .faq-a {
        display: block;
      }
      .faq-contact {
        background: var(--rust);
        border-radius: var(--r20);
        padding: 34px 28px;
      }
      .faq-contact h3 {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 10px;
      }
      .faq-contact p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        margin-bottom: 26px;
        line-height: 1.7;
      }
      .co-opts {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .co-opt {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--r10);
        cursor: pointer;
        transition: background 0.15s;
      }
      .co-opt:hover {
        background: rgba(255, 255, 255, 0.18);
      }
      .co-ico {
        width: 36px;
        height: 36px;
        background: rgba(201, 169, 110, 0.2);
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .co-ico svg {
        width: 17px;
        height: 17px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
      }
      .co-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--white);
      }
      .co-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.42);
      }

      /* ══ NEWSLETTER ════════════════════════════════════════ */
      #newsletter {
        background: var(--navy);
        padding: 64px 40px;
        text-align: center;
      }
      .nl-inner {
        max-width: 520px;
        margin: 0 auto;
      }
      .nl-inner h2 {
        font-family: var(--serif);
        font-size: 36px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 10px;
      }
      .nl-inner p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
        margin-bottom: 28px;
      }
      .nl-form {
        display: flex;
        gap: 10px;
      }
      .nl-input {
        flex: 1;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--r6);
        color: var(--white);
        font-family: var(--sans);
        font-size: 14px;
        outline: none;
      }
      .nl-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }
      .nl-input:focus {
        border-color: rgba(139, 58, 42, 0.45);
      }
      .btn-nl {
        background: var(--rust);
        color: var(--white);
        padding: 12px 24px;
        border-radius: var(--r6);
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        transition: all 0.15s;
      }
      .btn-nl:hover {
        background: var(--rust2);
      }

      /* ─── FOOTER ──────────────────────────────────────────────── */
      footer {
        background: var(--navy);
        padding: 72px 5% 0;
        border-top: 1px solid rgba(201, 169, 110, 0.12);
      }
      .footer-inner {
        max-width: 1240px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.75;
        margin-top: 16px;
        font-weight: 300;
        max-width: 260px;
      }
      .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 24px;
      }
      .social-btn {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.15s;
        cursor: pointer;
      }
      .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .social-btn svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .footer-col h5 {
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        font-weight: 500;
        margin-bottom: 20px;
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 11px;
        transition: color 0.15s;
        font-weight: 300;
      }
      .footer-col a:hover {
        color: rgba(255, 255, 255, 0.85);
      }
      .footer-bottom {
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
      }
      .footer-reg {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
      }
      .footer-badges {
        display: flex;
        gap: 8px;
      }
      .fbadge {
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 5px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.5px;
      }

      /* ══ MODAL ═════════════════════════════════════════════ */
      .modal-ov {
        position: fixed;
        inset: 0;
        z-index: 500;
        background: rgba(13, 27, 46, 0.65);
        backdrop-filter: blur(4px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }
      .modal-ov.open {
        display: flex;
      }
      .modal {
        background: var(--white);
        border-radius: var(--r20);
        padding: 36px;
        width: 100%;
        max-width: 480px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
      }
      .modal-x {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 30px;
        height: 30px;
        background: var(--smoke);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
      .modal-x svg {
        width: 13px;
        height: 13px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 2;
      }
      .modal h3 {
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 6px;
      }
      .modal > p {
        font-size: 13px;
        color: var(--slate);
        margin-bottom: 22px;
      }
      .fg {
        margin-bottom: 14px;
      }
      .fg label {
        display: block;
        font-size: 10.5px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--ghost);
        font-weight: 600;
        margin-bottom: 5px;
      }
      .fi {
        width: 100%;
        padding: 11px 13px;
        background: var(--smoke);
        border: 1px solid var(--fog);
        border-radius: var(--r6);
        color: var(--ink);
        font-size: 13.5px;
        font-family: var(--sans);
        outline: none;
        transition: border-color 0.15s;
        appearance: none;
      }
      .fi:focus {
        border-color: rgba(139, 58, 42, 0.4);
        background: var(--white);
      }
      .frow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-msub {
        width: 100%;
        background: var(--rust);
        color: var(--white);
        padding: 13px;
        border: none;
        border-radius: var(--r10);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: background 0.15s;
        margin-top: 6px;
      }
      .btn-msub:hover {
        background: var(--rust2);
      }
      .modal-note {
        font-size: 11px;
        color: var(--ghost);
        text-align: center;
        margin-top: 10px;
        line-height: 1.6;
      }

      /* ══ RESPONSIVE ═════════════════════════════════════════ */
      @media (max-width: 1100px) {
        #hero {
          grid-template-columns: 1fr;
          gap: 48px;
          padding: 100px 5% 64px;
        }
        #hero::after {
          width: 100%;
          opacity: 0.2;
        }
        .what-grid,
        .dash-layout {
          grid-template-columns: 1fr;
        }
        .wv-main {
          height: 220px;
        }
        .wv-tiers {
          display: none;
        }
        .tiers-grid,
        .benefits-grid,
        .test-grid {
          grid-template-columns: 1fr 1fr;
        }
        .steps {
          grid-template-columns: 1fr 1fr 1fr;
        }
        .steps::before {
          display: none;
        }
        .inc-layout,
        .faq-layout {
          grid-template-columns: 1fr;
        }
        .inc-nav {
          position: static;
        }
        .ft-top {
          grid-template-columns: 1fr 1fr 1fr;
        }
        .ft-brand {
          grid-column: span 3;
        }
      }
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        #nav {
          padding: 0 20px;
        }
        .tiers-grid,
        .benefits-grid,
        .test-grid {
          grid-template-columns: 1fr;
        }
        .steps {
          grid-template-columns: 1fr 1fr;
        }
        .inc-list {
          grid-template-columns: 1fr;
        }
        .section,
        #faq,
        #cta-band,
        #newsletter {
          padding: 60px 20px;
        }
        #how {
          padding: 60px 20px;
        }
        .nl-form {
          flex-direction: column;
        }
        footer,
        .bc-strip {
          padding-left: 20px;
          padding-right: 20px;
        }
        .ft-top {
          grid-template-columns: 1fr 1fr;
          gap: 24px;
        }
        .ft-brand {
          grid-column: span 2;
        }
        .rrow,
        .frow {
          grid-template-columns: 1fr;
        }
      }