/* ═══════════════════════════════════════════════════════════
 *  css/pages/tenant.css — Land of Profits
 *  Page-specific styles for tenant.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;
      }

      /* ═══ FLOAT BUTTONS ═══════════════════════════ */
      .float-l {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg) translateX(-50%);
        transform-origin: left center;
        z-index: 100;
      }
      .float-r {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%) rotate(90deg) translateX(50%);
        transform-origin: right center;
        z-index: 100;
      }
      .float-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);
        padding: 100px 5% 80px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      /* Teal accent glow */
      #hero::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -5%;
        width: 55%;
        height: 120%;
        background: radial-gradient(
          ellipse 60% 80% at 70% 40%,
          rgba(26, 107, 90, 0.14) 0%,
          transparent 65%
        );
      }
      /* Geometric rings */
      #hero::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        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.5' stroke-opacity='0.10'/%3E%3Ccircle cx='350' cy='450' r='240' fill='none' stroke='%231A6B5A' stroke-width='0.5' stroke-opacity='0.12'/%3E%3Ccircle cx='350' cy='450' r='140' fill='none' stroke='%23C9A96E' stroke-width='0.4' stroke-opacity='0.08'/%3E%3Cline x1='0' y1='0' x2='700' y2='900' stroke='%23C9A96E' stroke-width='0.3' stroke-opacity='0.05'/%3E%3Cline x1='700' y1='0' x2='0' y2='900' stroke='%23C9A96E' stroke-width='0.3' stroke-opacity='0.05'/%3E%3C/svg%3E")
          center/cover;
        opacity: 0.7;
        pointer-events: none;
      }
      .hero-content {
        position: relative;
        z-index: 2;
      }
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
        background: rgba(26, 107, 90, 0.15);
        border: 1px solid rgba(26, 107, 90, 0.3);
        color: #5ecfb8;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 20px;
      }
      .eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #5ecfb8;
      }
      h1.hero-h1 {
        font-family: var(--serif);
        font-size: clamp(42px, 4.8vw, 64px);
        font-weight: 600;
        line-height: 1.06;
        letter-spacing: -0.5px;
        color: var(--white);
        margin-bottom: 12px;
      }
      h1.hero-h1 em {
        font-style: italic;
        color: var(--gold);
      }
      .hero-tagline {
        font-family: var(--serif);
        font-size: clamp(16px, 1.8vw, 20px);
        font-style: italic;
        color: rgba(255, 255, 255, 0.42);
        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: 38px;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 48px;
      }
      .btn-teal {
        background: var(--teal);
        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-teal:hover {
        background: var(--teal2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(26, 107, 90, 0.3);
      }
      .btn-teal svg,
      .btn-outline-w svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .btn-outline-w {
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
        padding: 13px 26px;
        border-radius: var(--r6);
        font-size: 14px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-outline-w:hover {
        border-color: rgba(255, 255, 255, 0.45);
        color: var(--white);
      }
      .hero-stats {
        display: flex;
        gap: 20px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
      .hs-item {
        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 — landlord form card */
      .hero-card {
        position: relative;
        z-index: 2;
      }
      .lcard {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(201, 169, 110, 0.18);
        border-radius: var(--r20);
        padding: 36px;
        backdrop-filter: blur(8px);
      }
      .lcard-title {
        font-family: var(--serif);
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 6px;
      }
      .lcard-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.38);
        margin-bottom: 28px;
        font-weight: 300;
      }
      .lfield {
        margin-bottom: 15px;
      }
      .lfield 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;
      }
      .linput {
        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;
      }
      .linput:focus {
        border-color: rgba(26, 107, 90, 0.5);
        background: rgba(255, 255, 255, 0.09);
      }
      .linput option {
        background: var(--navy2);
      }
      .lrow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-lcard {
        width: 100%;
        background: var(--teal);
        color: var(--white);
        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-lcard:hover {
        background: var(--teal2);
      }
      .btn-lcard svg {
        width: 16px;
        height: 16px;
        stroke: var(--white);
        fill: none;
        stroke-width: 2;
      }
      .lcard-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);
      }
      .lcard-footer svg {
        width: 14px;
        height: 14px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .lcard-footer p {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.5;
      }

      /* Breadcrumb strip */
      .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;
      }
      .eyebrow-dark {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 14px;
        color: var(--teal);
      }
      .eyebrow-light {
        display: inline-block;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 14px;
        color: #5ecfb8;
      }
      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.light {
        color: var(--white);
      }
      h2.st em {
        font-style: italic;
        color: var(--teal);
      }
      h2.st.light em {
        color: var(--gold);
      }
      .ss {
        font-size: 15px;
        font-weight: 300;
        color: var(--slate);
        max-width: 540px;
        line-height: 1.75;
      }
      .ss.light {
        color: rgba(255, 255, 255, 0.5);
      }
      .tc {
        text-align: center;
      }
      .tc .ss {
        margin: 0 auto;
      }

      /* ═══ HOW IT WORKS — STEPS ════════════════════ */
      #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(26, 107, 90, 0.15);
        border-color: rgba(26, 107, 90, 0.35);
      }
      .step.active .step-ring {
        background: var(--teal);
        border-color: var(--teal);
      }
      .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;
      }

      /* ═══ 3 PILLARS ════════════════════════════════ */
      #why {
        background: var(--white);
      }
      .pillars {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 52px;
      }
      .pillar {
        background: var(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        padding: 34px 28px;
        transition: all 0.25s;
        position: relative;
        overflow: hidden;
        cursor: default;
      }
      .pillar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      .pillar:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-md);
        border-color: rgba(26, 107, 90, 0.2);
      }
      .pillar:hover::after {
        transform: scaleX(1);
      }
      .p-num {
        font-family: var(--serif);
        font-size: 50px;
        font-weight: 700;
        color: rgba(26, 107, 90, 0.1);
        line-height: 1;
        margin-bottom: 14px;
      }
      .p-icon {
        width: 48px;
        height: 48px;
        background: var(--teal-lt);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
      }
      .p-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
      }
      .pillar h3 {
        font-family: var(--serif);
        font-size: 21px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 10px;
      }
      .pillar p {
        font-size: 14px;
        color: var(--slate);
        line-height: 1.7;
        font-weight: 300;
      }

      /* ═══ SERVICES GRID ════════════════════════════ */
      #services {
        background: var(--cream);
      }
      .svc-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 48px;
      }
      .svc-card {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        padding: 28px;
        transition: all 0.22s;
        display: flex;
        gap: 20px;
        align-items: flex-start;
      }
      .svc-card:hover {
        border-color: rgba(26, 107, 90, 0.25);
        box-shadow: var(--sh-md);
        transform: translateY(-2px);
      }
      .svc-ico {
        width: 50px;
        height: 50px;
        background: var(--teal-lt);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .svc-ico svg {
        width: 24px;
        height: 24px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
      }
      .svc-body h3 {
        font-family: var(--serif);
        font-size: 18px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 7px;
      }
      .svc-body p {
        font-size: 13.5px;
        color: var(--slate);
        line-height: 1.65;
        font-weight: 300;
      }

      /* ═══ WHAT'S INCLUDED ══════════════════════════ */
      #included {
        background: var(--white);
      }
      .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(--cream);
        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(--teal);
      }
      .inc-nav-item.active {
        background: var(--mist);
        color: var(--teal);
        border-left: 3px solid var(--teal);
      }
      .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(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        overflow: hidden;
      }
      .inc-hdr {
        padding: 18px 22px;
        border-bottom: 1px solid var(--fog);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        transition: background 0.15s;
      }
      .inc-hdr:hover {
        background: var(--smoke);
      }
      .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-hdr .meta {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .inc-hdr .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(--teal);
      }
      .inc-hdr.open {
        background: var(--mist);
      }
      .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;
      }

      /* ═══ PRICING ══════════════════════════════════ */
      #pricing {
        background: var(--cream);
      }
      .price-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 52px;
      }
      .price-card {
        background: var(--white);
        border: 1px solid var(--fog);
        border-radius: var(--r20);
        padding: 36px 30px;
        transition: all 0.22s;
        position: relative;
        overflow: hidden;
      }
      .price-card.featured {
        border-color: var(--teal);
        box-shadow: 0 0 0 1px var(--teal);
      }
      .price-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-md);
      }
      .popular-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: var(--teal);
        color: var(--white);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 0 var(--r20) 0 var(--r10);
      }
      .price-tier {
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--teal);
        margin-bottom: 14px;
      }
      .price-val {
        font-family: var(--serif);
        font-size: 42px;
        font-weight: 700;
        color: var(--ink);
        line-height: 1;
        margin-bottom: 4px;
      }
      .price-val sup {
        font-size: 20px;
        vertical-align: super;
        font-weight: 500;
      }
      .price-sub {
        font-size: 12px;
        color: var(--ghost);
        margin-bottom: 22px;
      }
      .price-desc {
        font-size: 13px;
        color: var(--slate);
        line-height: 1.6;
        margin-bottom: 24px;
        font-weight: 300;
        min-height: 48px;
      }
      .price-list {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 28px;
      }
      .pi {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--ink);
      }
      .pi svg {
        width: 15px;
        height: 15px;
        stroke: var(--ok);
        fill: none;
        stroke-width: 2.2;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .pi.off {
        color: var(--ghost);
      }
      .pi.off svg {
        stroke: var(--fog);
      }
      .btn-price {
        width: 100%;
        padding: 12px;
        border-radius: var(--r10);
        font-size: 13.5px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.15s;
      }
      .btn-price.primary {
        background: var(--teal);
        color: var(--white);
      }
      .btn-price.primary:hover {
        background: var(--teal2);
      }
      .btn-price.secondary {
        background: transparent;
        color: var(--teal);
        border: 1px solid var(--teal);
      }
      .btn-price.secondary:hover {
        background: var(--teal-lt);
      }

      /* ═══ TENANT PROFILES ══════════════════════════ */
      #tenants {
        background: var(--white);
      }
      .tenant-intro {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
        margin-bottom: 52px;
      }
      .tenant-img-mock {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 50%, var(--teal) 100%);
        border-radius: var(--r20);
        height: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 16px;
        position: relative;
        overflow: hidden;
      }
      .tenant-img-mock::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.1;
        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: 16px 16px;
      }
      .mock-stat {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .mock-stat .mn {
        font-family: var(--serif);
        font-size: 52px;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
      }
      .mock-stat .ml {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 4px;
      }
      .tenant-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 0;
      }
      .tenant-card {
        background: var(--cream);
        border: 1px solid var(--fog);
        border-radius: var(--r14);
        padding: 20px;
        transition: all 0.2s;
      }
      .tenant-card:hover {
        border-color: rgba(26, 107, 90, 0.25);
        box-shadow: var(--sh);
      }
      .tc-ava {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 12px;
        flex-shrink: 0;
      }
      .tc-name {
        font-size: 14px;
        font-weight: 500;
        color: var(--ink);
        margin-bottom: 2px;
      }
      .tc-role {
        font-size: 12px;
        color: var(--ghost);
        margin-bottom: 10px;
      }
      .tc-details {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .tc-row {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: var(--slate);
      }
      .tc-row svg {
        width: 12px;
        height: 12px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
      }
      .tc-verified {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        font-weight: 700;
        color: var(--ok);
        margin-top: 10px;
        background: var(--ok-lt);
        padding: 3px 8px;
        border-radius: 20px;
      }
      .tc-verified svg {
        width: 11px;
        height: 11px;
        stroke: var(--ok);
        fill: none;
        stroke-width: 2.5;
      }

      /* ═══ LANDLORD TIPS ════════════════════════════ */
      #tips {
        background: var(--navy);
      }
      .tips-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 52px;
      }
      .tip-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--r14);
        padding: 24px 20px;
        transition: all 0.2s;
      }
      .tip-card:hover {
        background: rgba(26, 107, 90, 0.08);
        border-color: rgba(26, 107, 90, 0.2);
      }
      .tip-num {
        font-family: var(--serif);
        font-size: 32px;
        font-weight: 700;
        color: rgba(201, 169, 110, 0.25);
        line-height: 1;
        margin-bottom: 14px;
      }
      .tip-icon {
        width: 40px;
        height: 40px;
        background: rgba(26, 107, 90, 0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
      }
      .tip-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.8;
      }
      .tip-card h4 {
        font-family: var(--serif);
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 8px;
      }
      .tip-card p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.38);
        line-height: 1.65;
        font-weight: 300;
      }

      /* ═══ LIST CTA BAND ════════════════════════════ */
      #list-cta {
        background: var(--teal);
        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;
      }
      .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-white {
        background: var(--white);
        color: var(--teal);
        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-white:hover {
        background: var(--cream);
        transform: translateY(-2px);
      }
      .btn-white svg {
        width: 16px;
        height: 16px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 2;
      }
      .btn-outline-white {
        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.3);
        transition: all 0.15s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-outline-white:hover {
        border-color: rgba(255, 255, 255, 0.6);
        color: var(--white);
      }
      .btn-outline-white svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .cta-trust {
        display: flex;
        justify-content: center;
        gap: 28px;
        margin-top: 32px;
        flex-wrap: wrap;
      }
      .ctrust {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.4);
      }
      .ctrust svg {
        width: 14px;
        height: 14px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
      }

      /* ═══ FAQ ═══════════════════════════════════════ */
      #faq {
        background: var(--cream);
        padding: 88px 40px;
      }
      .faq-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
      }
      .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(--teal);
      }
      .faq-item.open .faq-q {
        color: var(--teal);
      }
      .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;
      }
      /* Contact card */
      .faq-contact {
        background: var(--teal);
        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-options {
        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);
      }

      /* ═══ 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(26, 107, 90, 0.4);
      }
      .btn-nl {
        background: var(--teal);
        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(--teal2);
      }

      /* ─── 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(26, 107, 90, 0.4);
        background: var(--white);
      }
      .frow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .btn-sub {
        width: 100%;
        background: var(--teal);
        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-sub:hover {
        background: var(--teal2);
      }
      .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;
        }
        .pillars {
          grid-template-columns: 1fr 1fr;
        }
        .svc-grid {
          grid-template-columns: 1fr;
        }
        .steps {
          grid-template-columns: 1fr 1fr 1fr;
        }
        .steps::before {
          display: none;
        }
        .inc-layout {
          grid-template-columns: 1fr;
        }
        .inc-nav {
          position: static;
        }
        .price-grid {
          grid-template-columns: 1fr 1fr;
        }
        .tips-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .tenant-intro {
          grid-template-columns: 1fr;
        }
        .tenant-img-mock {
          height: 220px;
        }
        .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;
        }
        .pillars {
          grid-template-columns: 1fr;
        }
        .steps {
          grid-template-columns: 1fr 1fr;
        }
        .inc-list {
          grid-template-columns: 1fr;
        }
        .price-grid {
          grid-template-columns: 1fr;
        }
        .tenant-grid {
          grid-template-columns: 1fr 1fr;
        }
        .tips-grid {
          grid-template-columns: 1fr 1fr;
        }
        .faq-layout {
          grid-template-columns: 1fr;
        }
        .section {
          padding: 60px 20px;
        }
        #how,
        #faq,
        #list-cta,
        #newsletter {
          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;
        }
      }
      @media (max-width: 480px) {
        .tenant-grid {
          grid-template-columns: 1fr;
        }
        .tips-grid {
          grid-template-columns: 1fr;
        }
      }