/* ═══════════════════════════════════════════════════════════
 *  css/pages/buyer.css — Land of Profits
 *  Page-specific styles for buyer.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;
      }
      /* Rich gold diagonal texture */
      #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 60% 70% at 72% 42%,
          rgba(201, 169, 110, 0.1) 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.12'/%3E%3Ccircle cx='350' cy='450' r='250' fill='none' stroke='%23C9A96E' stroke-width='0.5' stroke-opacity='0.09'/%3E%3Ccircle cx='350' cy='450' r='150' fill='none' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.07'/%3E%3Crect x='80' y='80' width='540' height='740' rx='20' fill='none' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.06'/%3E%3Cline x1='0' y1='450' x2='700' y2='450' stroke='%23C9A96E' stroke-width='0.3' stroke-opacity='0.05'/%3E%3C/svg%3E")
          center/cover;
        opacity: 0.8;
        pointer-events: none;
      }
      .hero-left {
        position: relative;
        z-index: 2;
      }

      /* LopBuyer badge — gold verified pill */
      .lb-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
        background: rgba(201, 169, 110, 0.14);
        border: 1px solid rgba(201, 169, 110, 0.35);
        color: var(--gold2);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 20px;
      }
      .lb-badge .verified-ico {
        width: 16px;
        height: 16px;
        background: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .lb-badge .verified-ico svg {
        width: 9px;
        height: 9px;
        stroke: var(--navy);
        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: 16px;
      }
      h1.hero-h1 .lop-prefix {
        color: var(--white);
      }
      h1.hero-h1 .lop-gold {
        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.45);
        margin-bottom: 24px;
      }
      .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-gold-hero {
        background: var(--gold);
        color: var(--navy);
        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-gold-hero:hover {
        background: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
      }
      .btn-gold-hero svg,
      .btn-outline-hero svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .btn-outline-hero {
        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-outline-hero: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);
      }
      .reg-card-title {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 5px;
      }
      .reg-card-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.38);
        margin-bottom: 26px;
        font-weight: 300;
      }
      /* Tier pills inside card */
      .tier-tabs {
        display: flex;
        gap: 4px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--r10);
        padding: 4px;
        margin-bottom: 24px;
      }
      .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);
      }
      .rfield {
        margin-bottom: 14px;
      }
      .rfield 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;
      }
      .rinput {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--r6);
        padding: 11px 14px;
        color: rgba(255, 255, 255, 0.85);
        font-family: var(--sans);
        font-size: 13.5px;
        outline: none;
        transition: border-color 0.15s;
        appearance: none;
      }
      .rinput:focus {
        border-color: rgba(201, 169, 110, 0.5);
        background: rgba(255, 255, 255, 0.09);
      }
      .rinput option {
        background: var(--navy2);
      }
      .rrow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-register {
        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-register:hover {
        background: var(--gold2);
      }
      .btn-register svg {
        width: 16px;
        height: 16px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
      }
      .reg-footer {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
      }
      .reg-footer svg {
        width: 14px;
        height: 14px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .reg-footer p {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.3);
        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(--mocha);
      }
      .ey-lt {
        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(--mocha);
      }
      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 LOPBUYER ══════════════════════════════════ */
      #what {
        background: var(--white);
      }
      .what-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .what-visual {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 50%, var(--mocha3) 100%);
        border-radius: var(--r20);
        height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        position: relative;
        overflow: hidden;
      }
      .what-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.12;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.3) 0,
          rgba(201, 169, 110, 0.3) 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.3);
        border-radius: var(--r14);
        padding: 24px 32px;
      }
      .wv-lop {
        font-family: var(--serif);
        font-size: 40px;
        font-weight: 700;
        color: var(--white);
        line-height: 1;
      }
      .wv-lop span {
        color: var(--gold);
      }
      .wv-sub {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
        margin-top: 6px;
      }
      .wv-verified {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(201, 169, 110, 0.15);
        border: 1px solid rgba(201, 169, 110, 0.25);
        border-radius: 20px;
        padding: 8px 16px;
      }
      .wv-verified svg {
        width: 14px;
        height: 14px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2.5;
      }
      .wv-verified span {
        font-size: 12px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 0.5px;
      }
      .wv-stats {
        display: flex;
        gap: 24px;
        position: relative;
        z-index: 2;
      }
      .wvs-item {
        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.4);
        margin-top: 2px;
      }
      .what-content .ey {
        display: block;
        margin-bottom: 14px;
      }
      .what-content h2 {
        margin-bottom: 16px;
      }
      .what-content p {
        font-size: 15px;
        color: var(--slate);
        line-height: 1.75;
        font-weight: 300;
        margin-bottom: 20px;
      }
      .what-bullets {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
      }
      .wb-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
        color: var(--ink);
      }
      .wb-ico {
        width: 22px;
        height: 22px;
        background: var(--gold-lt);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
        border: 1px solid rgba(201, 169, 110, 0.25);
      }
      .wb-ico svg {
        width: 11px;
        height: 11px;
        stroke: var(--amber);
        fill: none;
        stroke-width: 3;
      }

      /* ══ HOW IT WORKS ══════════════════════════════════════ */
      #how {
        background: var(--navy);
      }
      .steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        margin-top: 56px;
        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(201, 169, 110, 0.12);
        border-color: rgba(201, 169, 110, 0.3);
      }
      .step.active .step-ring {
        background: var(--gold);
        border-color: var(--gold);
      }
      .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(--navy);
      }
      .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);
        box-shadow: 0 0 0 1px var(--gold);
      }
      .tier-featured-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);
      }
      .tier-head {
        padding: 28px 26px 20px;
        border-bottom: 1px solid var(--fog);
      }
      .tier-name {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--mocha);
        margin-bottom: 10px;
      }
      .tier-price {
        font-family: var(--serif);
        font-size: 42px;
        font-weight: 700;
        color: var(--ink);
        line-height: 1;
      }
      .tier-price sup {
        font-size: 20px;
        font-weight: 500;
        vertical-align: super;
      }
      .tier-price-lbl {
        font-size: 11px;
        color: var(--ghost);
        margin-top: 4px;
      }
      .tier-body {
        padding: 20px 26px 26px;
      }
      .tier-desc {
        font-size: 13px;
        color: var(--slate);
        line-height: 1.6;
        font-weight: 300;
        margin-bottom: 18px;
        min-height: 44px;
      }
      .tier-list {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 22px;
      }
      .tl-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--ink);
      }
      .tl-item svg {
        width: 14px;
        height: 14px;
        stroke: var(--ok);
        fill: none;
        stroke-width: 2.5;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .tl-item.off {
        color: var(--ghost);
      }
      .tl-item.off svg {
        stroke: var(--fog);
      }
      .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;
      }
      .btn-tier.primary {
        background: var(--gold);
        color: var(--navy);
      }
      .btn-tier.primary:hover {
        background: var(--gold2);
      }
      .btn-tier.outline {
        background: transparent;
        color: var(--mocha);
        border: 1px solid rgba(76, 55, 36, 0.25);
      }
      .btn-tier.outline:hover {
        background: var(--sand);
      }

      /* ══ 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(--mocha), 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(201, 169, 110, 0.3);
      }
      .ben-card:hover::after {
        transform: scaleX(1);
      }
      .ben-ico {
        width: 48px;
        height: 48px;
        background: var(--gold-lt);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        border: 1px solid rgba(201, 169, 110, 0.2);
      }
      .ben-ico svg {
        width: 22px;
        height: 22px;
        stroke: var(--amber);
        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;
      }

      /* ══ VERIFIED BADGE EXPLAINER ══════════════════════════ */
      #verified {
        background: var(--navy);
      }
      .verified-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }
      .verified-left h2 {
        margin-bottom: 16px;
      }
      .verified-left > p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 300;
        line-height: 1.75;
        margin-bottom: 32px;
      }
      .verified-steps {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .vstep {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--r14);
        transition: all 0.2s;
      }
      .vstep:hover {
        background: rgba(201, 169, 110, 0.07);
        border-color: rgba(201, 169, 110, 0.2);
      }
      .vstep-num {
        font-family: var(--serif);
        font-size: 24px;
        font-weight: 700;
        color: var(--gold);
        width: 36px;
        flex-shrink: 0;
        line-height: 1;
      }
      .vstep-title {
        font-size: 14px;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 4px;
      }
      .vstep-desc {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.42);
        line-height: 1.55;
        font-weight: 300;
      }
      /* Right — badge mockup */
      .verified-right {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .vr-badge-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(201, 169, 110, 0.18);
        border-radius: var(--r20);
        padding: 32px;
        text-align: center;
      }
      .vr-badge-icon {
        width: 80px;
        height: 80px;
        background: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
      }
      .vr-badge-icon svg {
        width: 38px;
        height: 38px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
      }
      .vr-badge-title {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 6px;
      }
      .vr-badge-title span {
        color: var(--gold);
      }
      .vr-badge-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 20px;
        font-weight: 300;
      }
      .vr-checks {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: left;
      }
      .vr-check {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
      }
      .vr-check svg {
        width: 15px;
        height: 15px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }
      .vr-perks-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: var(--r14);
        padding: 22px 24px;
      }
      .vr-perks-title {
        font-size: 12px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        font-weight: 600;
        margin-bottom: 14px;
      }
      .vr-perks-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
      }
      .vr-perk {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.6);
      }
      .vr-perk svg {
        width: 12px;
        height: 12px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2.5;
        flex-shrink: 0;
      }

      /* ══ FEATURED PROPERTIES (LopBuyer Exclusives) ═════════ */
      #exclusives {
        background: var(--cream);
      }
      .exclusives-intro {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 36px;
        flex-wrap: wrap;
        gap: 16px;
      }
      .excl-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .excl-card {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        overflow: hidden;
        transition: all 0.22s;
      }
      .excl-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh-md);
        border-color: rgba(201, 169, 110, 0.3);
      }
      .excl-img {
        height: 190px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .excl-img-bg {
        position: absolute;
        inset: 0;
      }
      .excl-img-pat {
        position: absolute;
        inset: 0;
        opacity: 0.12;
        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: 15px 15px;
      }
      .excl-badges {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 3;
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
      }
      .excl-badge {
        padding: 3px 8px;
        border-radius: 20px;
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.4px;
        text-transform: uppercase;
      }
      .eb-excl {
        background: var(--gold);
        color: var(--navy);
      }
      .eb-new {
        background: rgba(22, 34, 54, 0.85);
        color: var(--gold);
        border: 1px solid rgba(201, 169, 110, 0.35);
      }
      .eb-ready {
        background: rgba(20, 80, 40, 0.85);
        color: #7eeaaa;
        border: 1px solid rgba(126, 234, 170, 0.25);
      }
      .excl-wish {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 3;
        width: 28px;
        height: 28px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(4px);
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.15s;
      }
      .excl-wish svg {
        width: 13px;
        height: 13px;
        stroke: rgba(255, 255, 255, 0.8);
        fill: none;
        stroke-width: 2;
      }
      .excl-img-info {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .excl-city {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.92);
        letter-spacing: -0.3px;
      }
      .excl-country {
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 3px;
      }
      .excl-body {
        padding: 16px 18px 18px;
      }
      .excl-name {
        font-family: var(--serif);
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 5px;
      }
      .excl-loc {
        font-size: 12px;
        color: var(--slate);
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 11px;
      }
      .excl-loc svg {
        width: 11px;
        height: 11px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }
      .excl-specs {
        display: flex;
        gap: 12px;
        padding: 9px 0;
        border-top: 1px solid var(--smoke);
        border-bottom: 1px solid var(--smoke);
        margin-bottom: 11px;
      }
      .excl-spec {
        font-size: 12px;
        color: var(--slate);
        display: flex;
        align-items: center;
        gap: 4px;
      }
      .excl-spec svg {
        width: 12px;
        height: 12px;
        stroke: var(--ghost);
        fill: none;
        stroke-width: 1.8;
        flex-shrink: 0;
      }
      .excl-spec strong {
        color: var(--ink);
        font-weight: 500;
      }
      .excl-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
      }
      .excl-price {
        font-family: var(--serif);
        font-size: 19px;
        font-weight: 600;
        color: var(--mocha);
        line-height: 1;
      }
      .excl-price-sub {
        font-size: 10px;
        color: var(--ghost);
        margin-top: 2px;
      }
      .excl-disc {
        display: flex;
        align-items: center;
        gap: 4px;
        background: rgba(46, 139, 87, 0.1);
        border-radius: 20px;
        padding: 3px 8px;
      }
      .excl-disc svg {
        width: 10px;
        height: 10px;
        stroke: var(--ok);
        fill: none;
        stroke-width: 2.5;
      }
      .excl-disc span {
        font-size: 11px;
        color: var(--ok);
        font-weight: 600;
      }
      .excl-btn {
        padding: 7px 14px;
        border-radius: var(--r6);
        font-size: 12px;
        font-weight: 500;
        background: var(--mocha);
        color: var(--white);
        transition: all 0.15s;
        border: none;
      }
      .excl-btn:hover {
        background: var(--mocha2);
      }
      .excl-more {
        text-align: center;
        margin-top: 36px;
      }
      .btn-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 32px;
        border: 1px solid var(--mocha);
        color: var(--mocha);
        border-radius: var(--r6);
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
      }
      .btn-more:hover {
        background: var(--mocha);
        color: var(--white);
      }
      .btn-more svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        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(--gold-lt);
        color: var(--amber);
        border: 1px solid rgba(201, 169, 110, 0.2);
      }

      /* ══ 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(--mocha);
      }
      .faq-item.open .faq-q {
        color: var(--mocha);
      }
      .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(--mocha);
        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.08);
        border-radius: var(--r10);
        cursor: pointer;
        transition: background 0.15s;
      }
      .co-opt:hover {
        background: rgba(255, 255, 255, 0.15);
      }
      .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.4);
      }

      /* ══ CTA BAND ══════════════════════════════════════════ */
      #cta {
        background: var(--navy);
        padding: 80px 40px;
        text-align: center;
      }
      .cta-inner {
        max-width: 620px;
        margin: 0 auto;
      }
      /* Gold shimmer ring around Lop text */
      .cta-lopbadge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(201, 169, 110, 0.12);
        border: 1px solid rgba(201, 169, 110, 0.28);
        border-radius: 20px;
        padding: 6px 16px;
        margin-bottom: 20px;
      }
      .cta-lopbadge svg {
        width: 12px;
        height: 12px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2.5;
      }
      .cta-lopbadge span {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600;
      }
      .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.5);
        font-weight: 300;
        margin-bottom: 36px;
        line-height: 1.7;
      }
      .cta-btns {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-cta-gold {
        background: var(--gold);
        color: var(--navy);
        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;
      }
      .btn-cta-gold:hover {
        background: var(--gold2);
        transform: translateY(-2px);
      }
      .btn-cta-gold svg {
        width: 16px;
        height: 16px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
      }
      .btn-cta-ow {
        background: transparent;
        color: rgba(255, 255, 255, 0.78);
        padding: 13px 28px;
        border-radius: var(--r6);
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-cta-ow:hover {
        border-color: rgba(255, 255, 255, 0.5);
        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.4);
      }
      .ct svg {
        width: 13px;
        height: 13px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
      }

      /* ══ NEWSLETTER ════════════════════════════════════════ */
      #newsletter {
        background: var(--mocha);
        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.45);
        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.15);
        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(201, 169, 110, 0.4);
      }
      .btn-nl {
        background: var(--gold);
        color: var(--navy);
        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(--gold2);
      }

      /* ─── 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(76, 55, 36, 0.4);
        background: var(--white);
      }
      .frow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-msub {
        width: 100%;
        background: var(--mocha);
        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(--mocha2);
      }
      .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 {
          grid-template-columns: 1fr;
        }
        .what-visual {
          height: 220px;
        }
        .tiers-grid,
        .excl-grid,
        .benefits-grid {
          grid-template-columns: 1fr 1fr;
        }
        .test-grid {
          grid-template-columns: 1fr 1fr;
        }
        .steps {
          grid-template-columns: 1fr 1fr 1fr;
        }
        .steps::before {
          display: none;
        }
        .verified-layout {
          grid-template-columns: 1fr;
        }
        .faq-layout {
          grid-template-columns: 1fr;
        }
        .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,
        .excl-grid,
        .benefits-grid,
        .test-grid {
          grid-template-columns: 1fr;
        }
        .steps {
          grid-template-columns: 1fr 1fr;
        }
        .section,
        #faq,
        #cta,
        #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;
        }
        .vr-perks-list {
          grid-template-columns: 1fr;
        }
      }