:root{
  /* Brand */
  --brand-deep:  #022834;
  --brand-blue:  #008DDE;
  --brand-blue-dark:#0071B2;
  --brand-tint:  #E8F5FD;

  /* Neutrals */
  --ink:      #1C2B33;
  --ink-soft: #55676F;
  --paper:    #FFFFFF;
  --mist:     #F3F8FB;
  --line:     #DCE6EC;

  /* Type */
  --font-display:"segoeUI-bold","Segoe UI Bold","Segoe UI Semibold","Segoe UI",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  --font-body:"segoeUI","Segoe UI",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;

  /* Scale */
  --wrap: 1240px;
  --radius: 6px;
}

.welease-pricing *,
.welease-pricing *::before,
.welease-pricing *::after{box-sizing:border-box}

.welease-pricing{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
.welease-pricing .wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}

/* ---------- Page head ---------- */
.welease-pricing .page-head{
  background:var(--brand-deep);
  color:#fff;
  padding:64px 0 56px;
  text-align:center;
}
.welease-pricing .page-head h1{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(30px,4.6vw,48px);
  line-height:1.12;
  letter-spacing:-.01em;
  margin:0 0 14px;
  color:#fff;
}
.welease-pricing .page-head p{
  margin:0 auto;
  max-width:620px;
  font-size:clamp(15px,1.7vw,18px);
  color:rgba(255,255,255,.82);
}
.welease-pricing .page-head .rule{
  width:64px;height:3px;background:var(--brand-blue);
  margin:22px auto 0;border-radius:2px;
}

/* ---------- Section nav ---------- */
.welease-pricing .section-nav{
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.welease-pricing .section-nav ul{
  list-style:none;margin:0;padding:0;
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:0 2px;
}
.welease-pricing .section-nav a{
  display:block;
  font-family:var(--font-display);
  font-size:12.5px;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase;
  color:var(--brand-deep);text-decoration:none;
  padding:17px 14px 14px;
  border-bottom:3px solid transparent;
  white-space:nowrap;
  transition:color .18s ease,background-color .18s ease,border-color .18s ease;
}
.welease-pricing .section-nav a:hover,
.welease-pricing .section-nav a:focus{
  color:var(--brand-blue);
  background:var(--mist);
  border-bottom-color:var(--brand-blue);
}
.welease-pricing .section-nav a:focus-visible{outline:3px solid var(--brand-blue);outline-offset:-3px}

/* Active link, no JavaScript: the anchor's :target lights up its own link. */
@supports selector(html:has(body)){
  .welease-pricing:has(#plan-overview:target)    .section-nav a[href="#plan-overview"],
  .welease-pricing:has(#management-fees:target)  .section-nav a[href="#management-fees"],
  .welease-pricing:has(#leasing-services:target) .section-nav a[href="#leasing-services"],
  .welease-pricing:has(#owner-protection:target) .section-nav a[href="#owner-protection"],
  .welease-pricing:has(#maintenance:target)      .section-nav a[href="#maintenance"],
  .welease-pricing:has(#reporting:target)        .section-nav a[href="#reporting"],
  .welease-pricing:has(#guarantees:target)       .section-nav a[href="#guarantees"]{
    color:var(--brand-blue);
    background:var(--brand-tint);
    border-bottom-color:var(--brand-blue);
  }
}

/* Anchor landing offset (clears the sticky nav on desktop). */
.welease-pricing .section,
.welease-pricing .section-head{scroll-margin-top:78px}

/* ---------- Section framing ---------- */
.welease-pricing .section{padding:60px 0}
.welease-pricing .section.alt{background:var(--mist)}
.welease-pricing .section-head{margin-bottom:28px}
.welease-pricing .section-head + .section-head{margin-top:52px}
.welease-pricing .eyebrow{
  font-family:var(--font-display);
  font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--brand-blue);margin:0 0 8px;
}
.welease-pricing .section-head h2{
  font-family:var(--font-display);
  font-size:clamp(22px,3vw,32px);
  font-weight:700;line-height:1.2;margin:0;color:var(--brand-deep);
}
.welease-pricing .stack{margin-top:52px}

/* ---------- Plan overview cards ---------- */
.welease-pricing .plans{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  align-items:stretch;
}
.welease-pricing .plan{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 22px 24px;
  display:flex;flex-direction:column;
  position:relative;
}
.welease-pricing .plan--featured{
  border-color:var(--brand-blue);
  border-width:2px;
  box-shadow:0 14px 34px -18px rgba(2,40,52,.35);
}
.welease-pricing .plan .badge{
  position:absolute;top:-11px;left:22px;
  background:var(--brand-blue);color:#fff;
  font-family:var(--font-display);font-size:10px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;
  padding:5px 11px;border-radius:3px;
}
.welease-pricing .plan h3{
  font-family:var(--font-display);
  font-size:21px;font-weight:700;margin:6px 0 14px;color:var(--brand-deep);
}
.welease-pricing .plan .best-for-label,
.welease-pricing .plan .fee-label{
  font-family:var(--font-display);
  font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink-soft);
}
.welease-pricing .plan .best-for-label{margin:0 0 6px}
.welease-pricing .plan .best-for{margin:0 0 22px;font-size:15px;color:var(--ink-soft);flex:1 0 auto}
.welease-pricing .plan .fee-label{margin:0 0 4px;padding-top:18px;border-top:1px solid var(--line)}
.welease-pricing .plan .fee{
  font-family:var(--font-display);
  font-size:20px;font-weight:700;line-height:1.3;color:var(--brand-blue);margin:0;
}
.welease-pricing .plan .fee small{
  display:block;font-family:var(--font-body);
  font-size:14px;font-weight:400;color:var(--ink-soft);margin-top:3px;
}

/* ---------- Comparison matrix ---------- */
.welease-pricing .cmp{
  width:100%;
  border-collapse:collapse;
  background:var(--paper);
  border:1px solid var(--line);
  font-size:15px;
}
.welease-pricing .cmp thead th{
  background:var(--brand-deep);
  color:#fff;
  font-family:var(--font-display);
  font-size:13px;font-weight:700;
  letter-spacing:.04em;
  text-align:center;
  padding:14px 12px;
  vertical-align:middle;
  border-right:1px solid rgba(255,255,255,.12);
  position:sticky;top:0;z-index:2;
}
.welease-pricing .cmp thead th:last-child{border-right:0}
.welease-pricing .cmp thead th.rowhead{text-align:left;width:30%;min-width:230px}
.welease-pricing .cmp thead th.featured-col{background:var(--brand-blue)}
.welease-pricing .cmp thead th .pop{
  display:block;color:#fff;
  font-size:9.5px;font-weight:700;letter-spacing:.14em;margin-top:4px;opacity:.9;
}
.welease-pricing .cmp tbody th{
  text-align:left;font-weight:700;
  font-family:var(--font-display);
  padding:13px 16px;
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  color:var(--brand-deep);
}
.welease-pricing .cmp tbody td{
  text-align:center;
  padding:13px 12px;
  border-bottom:1px solid var(--line);
  border-right:1px solid var(--line);
  color:var(--ink-soft);
  vertical-align:middle;
}
.welease-pricing .cmp tbody td:last-child,
.welease-pricing .cmp tbody th:last-child{border-right:0}
.welease-pricing .cmp tbody tr:nth-child(even) th,
.welease-pricing .cmp tbody tr:nth-child(even) td{background:#FAFCFE}
.welease-pricing .cmp tbody tr:last-child th,
.welease-pricing .cmp tbody tr:last-child td{border-bottom:0}
.welease-pricing .cmp tbody td.featured-col{background:var(--brand-tint) !important}
.welease-pricing .cmp td .val{font-weight:700;font-family:var(--font-display);color:var(--ink)}
.welease-pricing .cmp td .sub{display:block;font-size:13.5px;font-weight:400;font-family:var(--font-body);color:var(--ink-soft)}
.welease-pricing .cmp td .muted{color:var(--ink-soft);font-weight:400}

.welease-pricing .tick{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px}
.welease-pricing .tick svg{width:18px;height:18px;stroke:var(--brand-blue);stroke-width:2.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.welease-pricing .none{display:inline-block;width:16px;height:2px;background:var(--line);vertical-align:middle}

.welease-pricing .table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}

/* ---------- Plan switcher (mobile only, no JS) ---------- */
.welease-pricing .switcher{display:none}
.welease-pricing .switch-hint{display:none}
.welease-pricing .switcher input{position:absolute;opacity:0;width:1px;height:1px}
.welease-pricing .switcher .tabs{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 18px}
.welease-pricing .switcher label{
  font-family:var(--font-display);
  font-size:12px;font-weight:700;letter-spacing:.04em;
  padding:9px 13px;border:1px solid var(--line);border-radius:999px;
  color:var(--ink-soft);background:var(--paper);cursor:pointer;
}
.welease-pricing .switcher input:focus-visible + label{outline:2px solid var(--brand-blue);outline-offset:2px}
.welease-pricing #wl-p1:checked ~ .tabs label[for="wl-p1"],
.welease-pricing #wl-p2:checked ~ .tabs label[for="wl-p2"],
.welease-pricing #wl-p3:checked ~ .tabs label[for="wl-p3"],
.welease-pricing #wl-p4:checked ~ .tabs label[for="wl-p4"]{
  background:var(--brand-blue);border-color:var(--brand-blue);color:#fff;
}

/* ---------- Transparency note ---------- */
.welease-pricing .note{
  background:var(--brand-deep);
  color:#fff;
  border-radius:var(--radius);
  padding:34px 32px;
  display:grid;grid-template-columns:auto 1fr;gap:22px;align-items:start;
}
.welease-pricing .note .mark{
  font-family:var(--font-display);font-size:12px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:var(--brand-blue);
  white-space:nowrap;padding-top:5px;line-height:1.7;
}
.welease-pricing .note p{margin:0;font-size:16px;color:rgba(255,255,255,.86);max-width:74ch}

/* ---------- CTA row ---------- */
.welease-pricing .ctas{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:34px}
.welease-pricing .cta{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--paper);
  padding:24px 20px;
  text-align:center;
}
.welease-pricing .cta h4{
  font-family:var(--font-display);
  font-size:16px;font-weight:700;margin:0 0 14px;color:var(--brand-deep);
}
.welease-pricing .cta a{
  display:inline-block;width:100%;
  font-family:var(--font-display);
  font-size:13.5px;font-weight:700;letter-spacing:.03em;
  text-decoration:none;color:#fff;background:var(--brand-deep);
  padding:12px 14px;border-radius:4px;
  transition:background .18s ease;
}
.welease-pricing .cta a:hover,
.welease-pricing .cta a:focus{background:var(--brand-blue);color:#fff}
.welease-pricing .cta a:focus-visible{outline:3px solid var(--brand-blue);outline-offset:2px}
.welease-pricing .cta--featured{border-color:var(--brand-blue);border-width:2px}
.welease-pricing .cta--featured a{background:var(--brand-blue)}
.welease-pricing .cta--featured a:hover,
.welease-pricing .cta--featured a:focus{background:var(--brand-blue-dark)}

/* ---------- Guarantees ---------- */
.welease-pricing .guarantees{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.welease-pricing .guarantee{
  background:var(--paper);
  border:1px solid var(--line);
  border-top:3px solid var(--brand-blue);
  border-radius:var(--radius);
  padding:26px 24px;
}
.welease-pricing .guarantee h3{
  font-family:var(--font-display);
  font-size:17px;font-weight:700;margin:0 0 10px;color:var(--brand-deep);
}
.welease-pricing .guarantee p{margin:0;font-size:15px;color:var(--ink-soft)}

/* ---------- Responsive ---------- */
@media (min-width:861px){
  .welease-pricing .section-nav{
    position:sticky;top:0;z-index:6;
    box-shadow:0 8px 16px -14px rgba(2,40,52,.55);
  }
}

@media (prefers-reduced-motion:no-preference){
  html{scroll-behavior:smooth}
}

@media (max-width:1080px){
  .welease-pricing .plans{grid-template-columns:repeat(2,1fr)}
  .welease-pricing .ctas{grid-template-columns:repeat(2,1fr)}
  .welease-pricing .guarantees{grid-template-columns:repeat(2,1fr)}
  .welease-pricing .cmp thead th.rowhead{width:34%;min-width:190px}
}

@media (max-width:860px){
  .welease-pricing .section{padding:44px 0}
  .welease-pricing .section-head{margin-bottom:22px}
  .welease-pricing .stack{margin-top:40px}
  .welease-pricing .wrap{padding:0 18px}
  .welease-pricing .page-head{padding:44px 0 38px}
  .welease-pricing .page-head .rule{margin-top:18px}

  /* Nav becomes a swipeable strip; it does not stick, because the plan
     switcher owns top:0 on mobile. */
  .welease-pricing .section-nav .wrap{padding:0}
  .welease-pricing .section-nav ul{
    flex-wrap:nowrap;justify-content:flex-start;
    overflow-x:auto;overscroll-behavior-x:contain;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:0 10px;
  }
  .welease-pricing .section-nav ul::-webkit-scrollbar{display:none}
  .welease-pricing .section-nav a{
    display:flex;align-items:center;
    min-height:46px;padding:0 12px;
    font-size:12px;
    border-bottom-width:3px;
  }
  .welease-pricing .section,
  .welease-pricing .section-head{scroll-margin-top:88px}

  .welease-pricing .plan{padding:22px 18px 20px}
  .welease-pricing .plan .best-for{margin-bottom:18px}

  /* Headers stop sticking on mobile â€” the plan switcher below takes over. */
  .welease-pricing .cmp thead th{position:static}
  .welease-pricing .cmp{font-size:14.5px}
  .welease-pricing .cmp thead th{padding:12px 10px;font-size:12.5px}
  .welease-pricing .cmp thead th.rowhead{width:auto;min-width:0}
  .welease-pricing .cmp tbody th{padding:12px 13px;font-size:14.5px;hyphens:auto}
  .welease-pricing .cmp tbody td{padding:12px 10px}
  .welease-pricing .cmp td .sub{font-size:12.5px}

  .welease-pricing .note{grid-template-columns:1fr;gap:12px;padding:26px 22px}
  .welease-pricing .note .mark{white-space:normal;padding-top:0}
  .welease-pricing .note p{font-size:15.5px}

  .welease-pricing .ctas{margin-top:26px}
  .welease-pricing .cta{padding:20px 18px}
  .welease-pricing .cta a{padding:15px 14px}

  .welease-pricing .guarantee{padding:22px 20px}
}

/* Single-plan view: one column at a time, switched with the pills. */
@supports selector(html:has(body)){
  @media (max-width:860px){
    .welease-pricing .switcher{
      display:block;
      position:sticky;top:0;z-index:5;
      background:var(--mist);
      margin:0 0 4px;
      padding:12px 0 6px;
      box-shadow:0 10px 14px -12px rgba(2,40,52,.45);
    }
    .welease-pricing .switch-hint{
      display:block;
      font-family:var(--font-display);
      font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
      color:var(--ink-soft);margin:0 0 8px;
    }
    .welease-pricing .switcher .tabs{gap:7px;margin:0}
    .welease-pricing .switcher label{
      display:inline-flex;align-items:center;
      min-height:44px;padding:0 15px;
      -webkit-tap-highlight-color:transparent;
    }

    .welease-pricing .cmp thead th:nth-child(n+2),
    .welease-pricing .cmp tbody td:nth-child(n+2){display:none}
    .welease-pricing:has(#wl-p1:checked) .cmp thead th:nth-child(2),
    .welease-pricing:has(#wl-p1:checked) .cmp tbody td:nth-child(2),
    .welease-pricing:has(#wl-p2:checked) .cmp thead th:nth-child(3),
    .welease-pricing:has(#wl-p2:checked) .cmp tbody td:nth-child(3),
    .welease-pricing:has(#wl-p3:checked) .cmp thead th:nth-child(4),
    .welease-pricing:has(#wl-p3:checked) .cmp tbody td:nth-child(4),
    .welease-pricing:has(#wl-p4:checked) .cmp thead th:nth-child(5),
    .welease-pricing:has(#wl-p4:checked) .cmp tbody td:nth-child(5){display:table-cell}

    /* Label column takes the room it needs, value column stays narrow. */
    .welease-pricing .cmp tbody th{width:58%}
    .welease-pricing .cmp tbody td{width:42%}
  }
}

/* No :has() support: keep the full matrix and let it scroll sideways. */
@supports not selector(html:has(body)){
  @media (max-width:860px){
    .welease-pricing .cmp{min-width:660px}
    .welease-pricing .table-scroll{
      border-right:1px solid var(--line);
      overscroll-behavior-x:contain;
    }
  }
}

@media (max-width:600px){
  .welease-pricing .plans{grid-template-columns:1fr}
  .welease-pricing .ctas{grid-template-columns:1fr}
  .welease-pricing .guarantees{grid-template-columns:1fr}
  .welease-pricing .plan .best-for{margin-bottom:16px}
}

@media (max-width:400px){
  .welease-pricing .wrap{padding:0 14px}
  .welease-pricing .cmp{font-size:13.5px}
  .welease-pricing .cmp tbody th{padding:11px 10px;font-size:13.5px}
  .welease-pricing .cmp tbody td{padding:11px 8px}
  .welease-pricing .cmp td .sub{font-size:12px}
  .welease-pricing .switcher label{font-size:11.5px;padding:0 12px}
  .welease-pricing .plan h3{font-size:19px}
  .welease-pricing .note{padding:22px 18px}
}

@media (prefers-reduced-motion:reduce){
  .welease-pricing *{transition:none !important;animation:none !important}
}